Completed
Push — develop ( 77c7ee...7f9fca )
by Boy
05:34 queued 02:31
created
src/CMPayments/JsonLint/Exceptions/JsonLintException.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     }
96 96
 
97 97
     /**
98
-     * @param null $jsonColumnNo
98
+     * @param integer $jsonColumnNo
99 99
      */
100 100
     public function setJsonColumnNo($jsonColumnNo)
101 101
     {
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
     /**
169 169
      * Append the current message with some more text
170 170
      *
171
-     * @param $appendingText
171
+     * @param string|null $appendingText
172 172
      */
173 173
     public function appendMessage($appendingText)
174 174
     {
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
      * Retrieves a specific array key from a class constant
195 195
      *
196 196
      * @param int    $code
197
-     * @param null   $default
197
+     * @param string   $default
198 198
      * @param string $msgArray
199 199
      *
200 200
      * @return null|string
Please login to merge, or discard this patch.
src/CMPayments/JsonLint/JsonLinter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -506,7 +506,7 @@
 block discarded – undo
506 506
             case 17:
507 507
                 if ($this->flags & self::PARSE_TO_ASSOC) {
508 508
 
509
-                    $yVal->token =& $tokens[$len - 2];
509
+                    $yVal->token = & $tokens[$len - 2];
510 510
                     $key         = $tokens[$len][0];
511 511
 
512 512
                     if (($this->flags & self::DETECT_KEY_CONFLICTS) && isset($tokens[$len - 2][$key])) {
Please login to merge, or discard this patch.