Completed
Push — master ( 0a933f...8a8a33 )
by Ma
02:04
created
src/Autocomplete/Container/Trie/Method/Template.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@
 block discarded – undo
8 8
     public $child;
9 9
     public $word;
10 10
 
11
+    /**
12
+     * @param \Autocomplete\Container\Trie\Node $child
13
+     */
11 14
     public final function execute($string, &$child)
12 15
     {
13 16
        $this->word = (join($string));
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@
 block discarded – undo
10 10
 
11 11
     public final function execute($string, &$child)
12 12
     {
13
-       $this->word = (join($string));
14
-       $this->child = $child;
15
-       return $this->algorithm($string, $child);
13
+        $this->word = (join($string));
14
+        $this->child = $child;
15
+        return $this->algorithm($string, $child);
16 16
     }
17 17
 
18 18
     public final function algorithm($string)
Please login to merge, or discard this patch.