Completed
Push — master ( a584d3...677f6f )
by Mike
08:20
created
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 1 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.