Total Complexity | 8 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | class NullDriver implements DriverInterface |
||
14 | 1 | { |
|
15 | 1 | /** |
|
16 | * @var PropertyNamingStrategyInterface |
||
17 | 1 | */ |
|
18 | private $namingStrategy; |
||
19 | |||
20 | public function __construct(PropertyNamingStrategyInterface $namingStrategy) |
||
21 | { |
||
22 | $this->namingStrategy = $namingStrategy; |
||
23 | } |
||
24 | |||
25 | public function loadMetadataForClass(\ReflectionClass $class): ?BaseClassMetadata |
||
48 | } |
||
49 | } |
||
50 |