| Total Complexity | 5 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 7 | class SiteReviewsSummaryBlock extends Block |
||
| 8 | { |
||
| 9 | public static function shortcodeClass(): string |
||
| 12 | } |
||
| 13 | |||
| 14 | protected function blockClasses(array $attributes): array |
||
| 15 | { |
||
| 16 | $classes = []; |
||
| 17 | if (!empty($attributes['styleAlign'])) { |
||
| 18 | $classes[] = "items-justified-{$attributes['styleAlign']}"; |
||
| 19 | } |
||
| 20 | return $classes; |
||
| 21 | } |
||
| 22 | |||
| 23 | protected function blockStyles(array $attributes): array |
||
| 34 | } |
||
| 35 | } |
||
| 36 |