Completed
Pull Request — master (#492)
by thomas
73:47
created
src/Script/Path/LogicOpNode.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 
23 23
     /**
24 24
      * MASTNode constructor.
25
-     * @param self|null $parent
25
+     * @param null|\self $parent
26 26
      * @param bool|null $value
27 27
      */
28 28
     public function __construct(self $parent = null, $value = null)
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     }
90 90
 
91 91
     /**
92
-     * @return array
92
+     * @return LogicOpNode[]
93 93
      */
94 94
     public function split()
95 95
     {
Please login to merge, or discard this patch.
src/Script/Path/ScriptBranch.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     /**
26 26
      * ScriptBranch constructor.
27 27
      * @param ScriptInterface $fullScript
28
-     * @param array $branch
28
+     * @param boolean[] $branch
29 29
      * @param PathTrace $segments
30 30
      */
31 31
     public function __construct(ScriptInterface $fullScript, array $branch, PathTrace $segments)
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     }
61 61
 
62 62
     /**
63
-     * @return array
63
+     * @return \BitWasp\Bitcoin\Script\Parser\Operation[]
64 64
      */
65 65
     public function getOps()
66 66
     {
Please login to merge, or discard this patch.