Completed
Push — master ( 2b25d1...a584d3 )
by Mike
20:38
created
src/Service/ChangeSet.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
80 80
     }
81 81
 
82 82
     /**
83
-     * @return array|\mxdiModule\Annotation\Inject[]
83
+     * @return Inject[]
84 84
      */
85 85
     public function getPropertiesInjections()
86 86
     {
Please login to merge, or discard this patch.
src/Service/YamlExtractor.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.
src/ServiceManager/DiAbstractFactory.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
     }
124 124
 
125 125
     /**
126
-     * @return mixed|ChangeSet
126
+     * @return ChangeSet
127 127
      */
128 128
     public function getChangeSet()
129 129
     {
Please login to merge, or discard this patch.
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.