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