| Conditions | 4 | 
| Paths | 4 | 
| Total Lines | 17 | 
| Code Lines | 9 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 16 | public function supports(Event $event): bool | ||
| 17 |     { | ||
| 18 |         if (!$event instanceof ResourceControllerEvent) { | ||
| 19 | return false; | ||
| 20 | } | ||
| 21 | |||
| 22 | $resourceGridView = $event->getSubject(); | ||
| 23 |         if (!$resourceGridView instanceof ResourceGridView) { | ||
| 24 | return false; | ||
| 25 | } | ||
| 26 | |||
| 27 | $data = $resourceGridView->getData(); | ||
| 28 |         if (!$data instanceof Pagerfanta) { | ||
| 29 | return false; | ||
| 30 | } | ||
| 31 | |||
| 32 | return true; | ||
| 33 | } | ||
| 55 |