Completed
Branch master (44b103)
by Riikka
09:49
created
src/AbstractJsonEncoder.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -55,6 +55,9 @@  discard block
 block discarded – undo
55 55
         $this->step = null;
56 56
     }
57 57
 
58
+    /**
59
+     * @param integer $options
60
+     */
58 61
     public function setOptions($options)
59 62
     {
60 63
         if ($this->step !== null) {
@@ -138,6 +141,9 @@  discard block
 block discarded – undo
138 141
         }
139 142
     }
140 143
 
144
+    /**
145
+     * @param boolean $isObject
146
+     */
141 147
     private function processStack(\Generator $generator, $isObject)
142 148
     {
143 149
         if ($isObject) {
@@ -252,6 +258,9 @@  discard block
 block discarded – undo
252 258
         $this->output($encoded, $token);
253 259
     }
254 260
 
261
+    /**
262
+     * @param string $string
263
+     */
255 264
     private function outputLine($string, $token)
256 265
     {
257 266
         $this->output($string, $token);
Please login to merge, or discard this patch.