| 1 | <?php declare(strict_types=1); |
||
| 7 | abstract class AbstractServiceProvider implements ServiceProviderInterface |
||
| 8 | { |
||
| 9 | use ContainerAwareTrait; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @var array |
||
| 13 | */ |
||
| 14 | protected $provides = []; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | 18 | protected $signature; |
|
| 20 | |||
| 21 | 18 | /** |
|
| 22 | 3 | * {@inheritdoc} |
|
| 23 | */ |
||
| 24 | public function provides(string $alias): bool |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function withSignature(string $signature): ServiceProviderInterface |
||
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | public function getSignature(): string |
||
| 46 | } |
||
| 47 |