Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | abstract class AbstractServiceProvider implements ServiceProviderInterface |
||
10 | { |
||
11 | use ContainerAwareTrait; |
||
12 | |||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $identifier; |
||
17 | |||
18 | 12 | public function getIdentifier(): string |
|
21 | } |
||
22 | |||
23 | 3 | public function setIdentifier(string $id): ServiceProviderInterface |
|
29 |