Total Complexity | 8 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class SiteReviewsBlock extends Block |
||
9 | { |
||
10 | public function shortcode(): ShortcodeContract |
||
13 | } |
||
14 | |||
15 | protected function blockClassAttr(array $attributes): string |
||
16 | { |
||
17 | $attr = []; |
||
18 | if (!empty($attributes['styleRatingColor']) || !empty($attributes['styleRatingColorCustom'])) { |
||
19 | $attr[] = 'has-custom-rating-color'; |
||
20 | } |
||
21 | return implode(' ', $attr); |
||
22 | } |
||
23 | |||
24 | protected function blockStyleAttr(array $attributes): string |
||
36 | } |
||
37 | } |
||
38 |