| Conditions | 2 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | protected function map_construct( array $data ): array { |
||
| 30 | return array_filter( |
||
| 31 | $data, |
||
| 32 | function ( $datum ): bool { |
||
| 33 | return in_array( |
||
| 34 | esc_attr( get_class( $datum ) ?: '' ), // phpcs:ignore Universal.Operators.DisallowShortTernary.Found |
||
| 35 | self::ALLOWED_ROUTE_TYPES, |
||
| 36 | true |
||
| 37 | ); |
||
| 53 |