Completed
Push — master ( 6612d0...777946 )
by Daniel
03:01
created
source/CommonCode.php 1 patch
Doc Comments   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      *
68 68
      * @param string $fullURL
69 69
      * @param array $features
70
-     * @return blob
70
+     * @return string
71 71
      */
72 72
     protected function getContentFromUrlThroughCurl($fullURL, $features = null)
73 73
     {
@@ -110,6 +110,9 @@  discard block
 block discarded – undo
110 110
         return $result;
111 111
     }
112 112
 
113
+    /**
114
+     * @param string $fullURL
115
+     */
113 116
     protected function getContentFromUrlThroughCurlRawArray($fullURL, $features = null)
114 117
     {
115 118
         $chanel = curl_init();
@@ -267,7 +270,7 @@  discard block
 block discarded – undo
267 270
      *
268 271
      * @param type $sourcePath
269 272
      * @param type $targetPath
270
-     * @return type
273
+     * @return string
271 274
      */
272 275
     protected function moveFilesIntoTargetFolder($sourcePath, $targetPath)
273 276
     {
@@ -325,6 +328,9 @@  discard block
 block discarded – undo
325 328
         }
326 329
     }
327 330
 
331
+    /**
332
+     * @param string $postingString
333
+     */
328 334
     protected function sendBackgroundPrepareData($pUrlParts, $postingString)
329 335
     {
330 336
         $this->initializeSprGlbAndSession();
@@ -366,7 +372,7 @@  discard block
 block discarded – undo
366 372
      *
367 373
      * @param float $fAbove
368 374
      * @param float $fBelow
369
-     * @param mixed $mArguments
375
+     * @param integer $mArguments
370 376
      * @return decimal
371 377
      */
372 378
     protected function setDividedResult($fAbove, $fBelow, $mArguments = 0)
Please login to merge, or discard this patch.
source/CommonBasic.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
      */
149 149
     protected function setJsonErrorInPlainEnglish()
150 150
     {
151
-        $knownErrors  = [
151
+        $knownErrors = [
152 152
             JSON_ERROR_NONE           => null,
153 153
             JSON_ERROR_DEPTH          => 'Maximum stack depth exceeded',
154 154
             JSON_ERROR_STATE_MISMATCH => 'Underflow or the modes mismatch',
Please login to merge, or discard this patch.