Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
93 | function options() { |
||
94 | |||
95 | $args = [ |
||
96 | 'color' => $this->color(), |
||
97 | 'fontFamily' => $this->font_family(), |
||
98 | 'fontSize' => $this->font_size(), |
||
99 | 'fontWeight' => $this->font_weight(), |
||
100 | 'text' => $this->text(), |
||
101 | ]; |
||
102 | |||
103 | $args = array_filter( $args, function( $value ) { |
||
104 | return ! is_null( $value ); |
||
105 | } ); |
||
106 | |||
107 | return $args; |
||
108 | |||
109 | } |
||
110 | |||
112 |