1 | <?php |
||
24 | class StyledImagesSubscriber implements EventSubscriberInterface |
||
25 | { |
||
26 | /** |
||
27 | * @var FilesystemInterface |
||
28 | */ |
||
29 | private $temporaryFileSystem; |
||
30 | /** |
||
31 | * @var FilesystemInterface|null |
||
32 | */ |
||
33 | private $primaryFileSystem; |
||
34 | |||
35 | /** |
||
36 | * StyledImagesSubscriber constructor. |
||
37 | * |
||
38 | * @param PrimaryFileSystemWrapper $PrimaryFileSystemWrapper |
||
39 | * @param FilesystemInterface|null $temporaryFileSystem |
||
40 | */ |
||
41 | public function __construct(PrimaryFileSystemWrapper $PrimaryFileSystemWrapper, FilesystemInterface $temporaryFileSystem = null) |
||
46 | |||
47 | /** |
||
48 | * @return array |
||
49 | */ |
||
50 | public static function getSubscribedEvents() |
||
57 | |||
58 | /** |
||
59 | * @param StyledImagesEvent $event |
||
60 | */ |
||
61 | public function onImagesGenerated(StyledImagesEvent $event) |
||
77 | |||
78 | /** |
||
79 | * @param StyledImagesEvent $event |
||
80 | */ |
||
81 | public function onImagesDeleted(StyledImagesEvent $event) |
||
85 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.