Completed
Push — master ( 8bfcf4...9b1d73 )
by Tomasz
04:06
created
src/HandlerContainer/HandlerContainer.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -10,6 +10,10 @@  discard block
 block discarded – undo
10 10
     private $interfaces = array();
11 11
     private $aliases = array();
12 12
 
13
+    /**
14
+     * @param string $class
15
+     * @param string $root
16
+     */
13 17
     public function add($class, $root, $handler)
14 18
     {
15 19
         if(false === is_callable($handler)) {
@@ -27,6 +31,10 @@  discard block
 block discarded – undo
27 31
         }
28 32
     }
29 33
 
34
+    /**
35
+     * @param string $alias
36
+     * @param string $class
37
+     */
30 38
     public function addAlias($alias, $class)
31 39
     {
32 40
         $handler = $this->getHandler($class);
Please login to merge, or discard this patch.