irishdan /
ResponsiveImageBundle
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 1 | <?php |
||
| 2 | /** |
||
| 3 | * This file is part of the IrishDan\ResponsiveImageBundle package. |
||
| 4 | * |
||
| 5 | * (c) Daniel Byrne <[email protected]> |
||
| 6 | * |
||
| 7 | * For the full copyright and license information, please view the LICENSE file that was distributed with this source |
||
| 8 | * code. |
||
| 9 | */ |
||
| 10 | |||
| 11 | namespace IrishDan\ResponsiveImageBundle\EventSubscriber; |
||
| 12 | |||
| 13 | use IrishDan\ResponsiveImageBundle\Event\FileSystemEvent; |
||
| 14 | use IrishDan\ResponsiveImageBundle\Event\FileSystemEvents; |
||
| 15 | use Symfony\Component\EventDispatcher\EventSubscriberInterface; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Class FileSystemSubscriber |
||
| 19 | * |
||
| 20 | * @package IrishDan\ResponsiveImageBundle\EventSubscriber |
||
| 21 | */ |
||
| 22 | class FileSystemSubscriber implements EventSubscriberInterface |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @return array |
||
| 26 | */ |
||
| 27 | public static function getSubscribedEvents() |
||
| 28 | { |
||
| 29 | return [ |
||
| 30 | FileSystemEvents::FILE_SYSTEM_FACTORY_GET => 'onFileSystemGet', |
||
| 31 | FileSystemEvents::FILE_SYSTEM_FACTORY_SET => 'onFileSystemSet', |
||
| 32 | ]; |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param FileSystemEvent $fileSystemEvent |
||
| 37 | */ |
||
| 38 | public function onFileSystemSet(FileSystemEvent $fileSystemEvent) |
||
|
0 ignored issues
–
show
|
|||
| 39 | { |
||
| 40 | // @TODO: Implement |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @param FileSystemEvent $fileSystemEvent |
||
| 45 | */ |
||
| 46 | public function onFileSystemGet(FileSystemEvent $fileSystemEvent) |
||
|
0 ignored issues
–
show
|
|||
| 47 | { |
||
| 48 | // @TODO: Implement |
||
| 49 | } |
||
| 50 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.