FileSystemSubscriber::onFileSystemSet()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 1
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
Unused Code introduced by
The parameter $fileSystemEvent is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
39
    {
40
        // @TODO: Implement
41
    }
42
43
    /**
44
     * @param FileSystemEvent $fileSystemEvent
45
     */
46
    public function onFileSystemGet(FileSystemEvent $fileSystemEvent)
0 ignored issues
show
Unused Code introduced by
The parameter $fileSystemEvent is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
47
    {
48
        // @TODO: Implement
49
    }
50
}