Completed
Push — develop ( 8221b3...aa59ae )
by Javier
02:39
created

CarbonBundle::getContainerExtension()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Xgc\CarbonBundle;
5
6
use LogicException;
7
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
8
use Symfony\Component\HttpKernel\Bundle\Bundle;
9
use Xgc\CarbonBundle\DependencyInjection\CarbonExtension;
0 ignored issues
show
Bug introduced by
The type Xgc\CarbonBundle\Depende...jection\CarbonExtension was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
10
11
/**
12
 * Class CarbonBundle
13
 * @package Xgc\CarbonBundle
14
 */
15
class CarbonBundle extends Bundle
16
{
17
}
18