Completed
Push — master ( 9ec196...c21c38 )
by Alex
11:51
created

OrbitaleCmsExtensionStub::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
/*
4
* This file is part of the OrbitaleCmsBundle package.
5
*
6
* (c) Alexandre Rock Ancelet <[email protected]>
7
*
8
* For the full copyright and license information, please view the LICENSE
9
* file that was distributed with this source code.
10
*/
11
12
namespace Orbitale\Bundle\CmsBundle\Tests\Fixtures\App\Stub;
13
14
use Orbitale\Bundle\CmsBundle\DependencyInjection\OrbitaleCmsExtension;
15
16
class OrbitaleCmsExtensionStub extends OrbitaleCmsExtension
17
{
18
    /**
19
     * @var bool
20
     */
21
    private $isSymfony3;
22
23
    public function __construct($isSymfony3)
24
    {
25
        $this->isSymfony3 = $isSymfony3;
26
    }
27
28
    protected function isSymfony3()
29
    {
30
        return $this->isSymfony3;
31
    }
32
}
33