Completed
Push — master ( fe0d66...6612d0 )
by Daniel
04:01
created
source/CommonBasic.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
                     ->ignoreUnreadableDirs(true)
87 87
                     ->followLinks()
88 88
                     ->in($inputArray['path']);
89
-            $aFiles   = null;
89
+            $aFiles = null;
90 90
             foreach ($iterator as $file) {
91 91
                 if ($file->getATime() < strtotime($inputArray['dateRule'])) {
92 92
                     $aFiles[] = $file->getRealPath();
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      */
138 138
     protected function setJsonErrorInPlainEnglish()
139 139
     {
140
-        $knownErrors  = [
140
+        $knownErrors = [
141 141
             JSON_ERROR_NONE           => null,
142 142
             JSON_ERROR_DEPTH          => 'Maximum stack depth exceeded',
143 143
             JSON_ERROR_STATE_MISMATCH => 'Underflow or the modes mismatch',
Please login to merge, or discard this patch.
source/CommonCode.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
         curl_setopt($chanel, CURLOPT_FAILONERROR, true);
94 94
         $rspJsonFromClient = curl_exec($chanel);
95 95
         if (curl_errno($chanel)) {
96
-            $aReturn['info']     = $this->setArrayToJson([
96
+            $aReturn['info'] = $this->setArrayToJson([
97 97
                 '#'           => curl_errno($chanel),
98 98
                 'description' => curl_error($chanel)
99 99
             ]);
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
                 ->ignoreUnreadableDirs(true)
270 270
                 ->followLinks()
271 271
                 ->in($sourcePath);
272
-        $sFiles     = [];
272
+        $sFiles = [];
273 273
         foreach ($iterator as $file) {
274 274
             $relativePathFile = str_replace($sourcePath, '', $file->getRealPath());
275 275
             if (!file_exists($targetPath . $relativePathFile)) {
Please login to merge, or discard this patch.