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