1 | <?php |
||
7 | abstract class AbstractServiceProvider implements ServiceProviderInterface |
||
8 | { |
||
9 | use ContainerAwareTrait; |
||
10 | |||
11 | /** |
||
12 | * @var array |
||
13 | */ |
||
14 | protected $provides = []; |
||
15 | |||
16 | /** |
||
17 | * {@inheritdoc} |
||
18 | */ |
||
19 | 12 | public function provides($alias = null) |
|
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function signature() |
||
35 | } |
||
36 |