Completed
Push — master ( 2d5ed5...57ba8c )
by Daniel
12s
created

TestCase::getContainer()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 1
1
<?php
2
3
namespace Psi\Bridge\ContentType\Twig\Tests\Functional;
4
5
class TestCase extends \PHPUnit_Framework_TestCase
6
{
7
    public function getContainer(array $config)
8
    {
9
        $container = new Container($config);
10
11
        return $container;
12
    }
13
}
14