Passed
Pull Request — master (#87)
by
unknown
13:19 queued 10:11
created
src/Mvc/MvcManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
139 139
      */
140 140
     private static function routeParams(): array
141 141
     {
142
-        return array_map(function ($param) {
142
+        return array_map(function($param) {
143 143
             return $param['value'];
144 144
         }, route_params());
145 145
     }
Please login to merge, or discard this patch.
src/Libraries/Validation/Validator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -196,7 +196,7 @@
 block discarded – undo
196 196
             foreach ($this->errors as $field => $errors) {
197 197
                 if (count($errors)) {
198 198
                     foreach ($errors as $rule => $param) {
199
-                        $translationParams = [t('common.'.$field)];
199
+                        $translationParams = [t('common.' . $field)];
200 200
 
201 201
                         if ($param) {
202 202
                             $translationParams[] = $param;
Please login to merge, or discard this patch.
src/Libraries/Mailer/Mailer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -504,7 +504,7 @@
 block discarded – undo
504 504
         if (config()->get('debug')) {
505 505
             $this->mailer->SMTPDebug = SMTP::DEBUG_SERVER;
506 506
 
507
-            $this->mailer->Debugoutput = function ($message) {
507
+            $this->mailer->Debugoutput = function($message) {
508 508
                 Debugger::addToStore(Debugger::MAILS, LogLevel::WARNING, $message);
509 509
 
510 510
                 $logFile = logs_dir() . DS . date('Y-m-d') . '.log';
Please login to merge, or discard this patch.
src/Console/Commands/OpenApiUiAssetsCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
             $this->fs->put($modulePath . DS . 'Resources' . DS . 'openApi' . DS . 'docs.json');
123 123
         }
124 124
 
125
-        exec(base_dir() . DS . 'vendor' . DS . 'bin' . DS . 'openapi modules' . DS . $module . DS . 'Controllers' . DS . ' -o modules' . DS . $module .  DS . 'Resources' . DS . 'openApi' . DS . 'docs.json');
125
+        exec(base_dir() . DS . 'vendor' . DS . 'bin' . DS . 'openapi modules' . DS . $module . DS . 'Controllers' . DS . ' -o modules' . DS . $module . DS . 'Resources' . DS . 'openApi' . DS . 'docs.json');
126 126
 
127 127
 
128 128
         $this->info('OpenApi assets successfully published');
Please login to merge, or discard this patch.