@@ -196,7 +196,7 @@ |
||
| 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; |
@@ -504,7 +504,7 @@ |
||
| 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'; |
@@ -64,7 +64,7 @@ |
||
| 64 | 64 | |
| 65 | 65 | $content = $this->fs->get($path); |
| 66 | 66 | |
| 67 | - if(!$content) { |
|
| 67 | + if (!$content) { |
|
| 68 | 68 | return $default; |
| 69 | 69 | } |
| 70 | 70 | |