Completed
Push — master ( 6d71ae...f255f3 )
by Greg
01:49
created
src/ParameterInjection.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -13,11 +13,17 @@
 block discarded – undo
13 13
         $this->register('Symfony\Component\Console\Output\OutputInterface', $this);
14 14
     }
15 15
 
16
+    /**
17
+     * @param string $interfaceName
18
+     */
16 19
     public function register($interfaceName, ParameterInjector $injector)
17 20
     {
18 21
         $this->injectors[$interfaceName] = $injector;
19 22
     }
20 23
 
24
+    /**
25
+     * @param CommandData $commandData
26
+     */
21 27
     public function args($commandData)
22 28
     {
23 29
         return array_merge(
Please login to merge, or discard this patch.