@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | } |
73 | 73 | |
74 | 74 | /** |
75 | - * @return InjectParams|null |
|
75 | + * @return InjectParams[] |
|
76 | 76 | */ |
77 | 77 | public function getMethodsInjections() |
78 | 78 | { |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
83 | - * @return array|\mxdiModule\Annotation\Inject[] |
|
83 | + * @return Inject[] |
|
84 | 84 | */ |
85 | 85 | public function getPropertiesInjections() |
86 | 86 | { |
@@ -1,9 +1,9 @@ |
||
1 | 1 | <?php |
2 | 2 | namespace mxdiModule\Service; |
3 | 3 | |
4 | +use Symfony\Component\Yaml\Yaml; |
|
4 | 5 | use mxdiModule\Annotation\AnnotationInterface; |
5 | 6 | use mxdiModule\Annotation\InjectParams; |
6 | -use Symfony\Component\Yaml\Yaml; |
|
7 | 7 | |
8 | 8 | class YamlExtractor implements ExtractorInterface |
9 | 9 | { |
@@ -123,7 +123,7 @@ |
||
123 | 123 | } |
124 | 124 | |
125 | 125 | /** |
126 | - * @return mixed|ChangeSet |
|
126 | + * @return ChangeSet |
|
127 | 127 | */ |
128 | 128 | public function getChangeSet() |
129 | 129 | { |
@@ -1,15 +1,15 @@ |
||
1 | 1 | <?php |
2 | 2 | namespace mxdiModule\ServiceManager; |
3 | 3 | |
4 | -use mxdiModule\Service\ExtractorInterface; |
|
5 | -use mxdiModule\Service\InstantiatorInterface; |
|
6 | -use mxdiModule\Traits\ServiceTrait; |
|
7 | 4 | use Zend\Cache\Storage\Adapter\AbstractAdapter; |
8 | 5 | use Zend\Cache\Storage\StorageInterface; |
9 | 6 | use Zend\ServiceManager\AbstractFactoryInterface; |
10 | 7 | use Zend\ServiceManager\ServiceLocatorInterface; |
11 | 8 | use mxdiModule\Service\ChangeSet; |
9 | +use mxdiModule\Service\ExtractorInterface; |
|
12 | 10 | use mxdiModule\Service\Instantiator; |
11 | +use mxdiModule\Service\InstantiatorInterface; |
|
12 | +use mxdiModule\Traits\ServiceTrait; |
|
13 | 13 | |
14 | 14 | class DiAbstractFactory implements AbstractFactoryInterface |
15 | 15 | { |