Completed
Push — master ( 6091e1...47dbb9 )
by Daniel
03:05
created
source/CommonBasic.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      *
42 42
      * @param type $sourcePath
43 43
      * @param type $targetPath
44
-     * @return type
44
+     * @return string
45 45
      */
46 46
     protected function moveFilesIntoTargetFolder($sourcePath, $targetPath)
47 47
     {
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
     /**
158 158
      * Provides a list of all known JSON errors and their description
159 159
      *
160
-     * @return type
160
+     * @return null|string
161 161
      */
162 162
     protected function setJsonErrorInPlainEnglish()
163 163
     {
Please login to merge, or discard this patch.
source/CommonCode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
         $rspJsonFromClient = curl_exec($chanel);
125 125
         $aReturn           = [];
126 126
         if (curl_errno($chanel)) {
127
-            $aReturn['info']     = $this->setArrayToJson([
127
+            $aReturn['info'] = $this->setArrayToJson([
128 128
                 '#'           => curl_errno($chanel),
129 129
                 'description' => curl_error($chanel)
130 130
             ]);
Please login to merge, or discard this patch.