ImagineResolverFactory::create()   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 3
1
<?php
2
3
/**
4
 * Copyright 2014 Jonathan Bouzekri. All rights reserved.
5
 *
6
 * @copyright Copyright 2014 Jonathan Bouzekri <[email protected]>
7
 * @license https://github.com/jbouzekri/FileUploaderBundle/blob/master/LICENSE
8
 * @link https://github.com/jbouzekri/FileUploaderBundle
9
 */
10
11
/**
12
 * @namespace
13
 */
14
namespace Jb\Bundle\FileUploaderBundle\DependencyInjection\ResolverFactory;
15
16
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
17
use Symfony\Component\DependencyInjection\ContainerBuilder;
18
19
/**
20
 * ImagineResolverFactory
21
 *
22
 * @author jobou
23
 */
24
class ImagineResolverFactory implements ResolverFactoryInterface
25
{
26
    /**
27
     * {@inheritdoc}
28
     */
29
    public function getKey()
30
    {
31
        return 'imagine';
32
    }
33
34
    /**
35
     * {@inheritdoc}
36
     */
37
    public function addConfiguration(ArrayNodeDefinition $node)
38
    {
39
40
    }
41
42
    /**
43
     * {@inheritdoc}
44
     */
45
    public function create(ContainerBuilder $container, $id, array $factory)
46
    {
47
48
    }
49
}
50