Completed
Push — master ( eeba9c...428c5a )
by Martin
01:48
created
src/AttributesProcessor.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -107,6 +107,9 @@  discard block
 block discarded – undo
107 107
         return [$target, $direction];
108 108
     }
109 109
 
110
+    /**
111
+     * @return null|Node
112
+     */
110 113
     private function getPrevious(Node $node = null): ?Node
111 114
     {
112 115
         $previous = $node instanceof Node ? $node->previous() : null;
@@ -118,6 +121,9 @@  discard block
 block discarded – undo
118 121
         return $previous;
119 122
     }
120 123
 
124
+    /**
125
+     * @return null|Node
126
+     */
121 127
     private function getNext(Node $node = null): ?Node
122 128
     {
123 129
         $next = $node instanceof Node ? $node->next() : null;
Please login to merge, or discard this patch.