Completed
Pull Request — master (#9)
by Koldo
02:13
created
src/Service/AbstractServiceManager.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -36,6 +36,10 @@  discard block
 block discarded – undo
36 36
     }
37 37
 
38 38
     abstract protected function getServiceConfig($id) : ConfigInterface;
39
+
40
+    /**
41
+     * @param string $id
42
+     */
39 43
     abstract protected function hasServiceConfig($id) : bool;
40 44
 
41 45
     public function get($id)
@@ -74,6 +78,9 @@  discard block
 block discarded – undo
74 78
         return $this->hasServiceConfig($id);
75 79
     }
76 80
 
81
+    /**
82
+     * @param string $id
83
+     */
77 84
     protected function getInstanceFromFactory($id)
78 85
     {
79 86
         $class   = null;
Please login to merge, or discard this patch.
src/Service/HandlerManager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -83,6 +83,9 @@
 block discarded – undo
83 83
         return $this->getFormatterManager()->get($id);
84 84
     }
85 85
 
86
+    /**
87
+     * @param ProcessorManager $processorManager
88
+     */
86 89
     public function setProcessorManager($processorManager)
87 90
     {
88 91
         $this->processorManager = $processorManager;
Please login to merge, or discard this patch.