Completed
Push — master ( bd17ed...fa6e51 )
by Colin
02:18
created
src/Json5Decoder.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      * Get the next character without consuming it or
145 145
      * assigning it to the ch variable.
146 146
      *
147
-     * @return mixed
147
+     * @return null|string
148 148
      */
149 149
     private function peek()
150 150
     {
@@ -610,6 +610,9 @@  discard block
 block discarded – undo
610 610
         }
611 611
     }
612 612
 
613
+    /**
614
+     * @param string $message
615
+     */
613 616
     private function throwSyntaxError($message)
614 617
     {
615 618
         throw new SyntaxError($message, $this->lineNumber, $this->columnNumber);
Please login to merge, or discard this patch.