Completed
Push — master ( 3de523...b5a3c1 )
by Marc
02:19
created
core/base/Boot.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -213,14 +213,14 @@
 block discarded – undo
213 213
         if (file_exists($this->_baseYiiFile)) {
214 214
             defined('LUYA_YII_VENDOR') ?: define('LUYA_YII_VENDOR', dirname($this->_baseYiiFile));
215 215
             
216
-            $baseYiiFolder = LUYA_YII_VENDOR . DIRECTORY_SEPARATOR;
217
-            $luyaYiiFile = $this->getCoreBasePath() . DIRECTORY_SEPARATOR .  'Yii.php';
216
+            $baseYiiFolder = LUYA_YII_VENDOR.DIRECTORY_SEPARATOR;
217
+            $luyaYiiFile = $this->getCoreBasePath().DIRECTORY_SEPARATOR.'Yii.php';
218 218
             
219 219
             if (file_exists($luyaYiiFile)) {
220
-                require_once($baseYiiFolder . 'BaseYii.php');
220
+                require_once($baseYiiFolder.'BaseYii.php');
221 221
                 require_once($luyaYiiFile);
222 222
             } else {
223
-                require_once($baseYiiFolder . 'Yii.php');
223
+                require_once($baseYiiFolder.'Yii.php');
224 224
             }
225 225
             
226 226
             Yii::setAlias('@luya', $this->getCoreBasePath());
Please login to merge, or discard this patch.
core/helpers/FileHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     {
52 52
         $info = pathinfo($file);
53 53
         if (!isset($info['extension']) || empty($info['extension'])) {
54
-            $file = rtrim($file, '.') . '.' . $extension;
54
+            $file = rtrim($file, '.').'.'.$extension;
55 55
         }
56 56
 
57 57
         return $file;
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
             'extension' => (isset($path['extension']) && !empty($path['extension'])) ? mb_strtolower($path['extension'], 'UTF-8') : false,
116 116
             'name' => (isset($path['filename']) && !empty($path['filename'])) ? $path['filename'] : false,
117 117
             'source' => $sourceFile,
118
-            'sourceFilename' => (isset($path['dirname']) && isset($path['filename'])) ? $path['dirname'] . DIRECTORY_SEPARATOR . $path['filename'] : false,
118
+            'sourceFilename' => (isset($path['dirname']) && isset($path['filename'])) ? $path['dirname'].DIRECTORY_SEPARATOR.$path['filename'] : false,
119 119
         ];
120 120
     }
121 121
     
Please login to merge, or discard this patch.
core/components/Mail.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                 $this->_mailer->isSMTP();
145 145
                 $this->_mailer->SMTPSecure = $this->smtpSecure;
146 146
                 $this->_mailer->Host = $this->host;
147
-                $this->_mailer->SMTPAuth= $this->smtpAuth;
147
+                $this->_mailer->SMTPAuth = $this->smtpAuth;
148 148
                 $this->_mailer->Username = $this->username;
149 149
                 $this->_mailer->Password = $this->password;
150 150
                 $this->_mailer->Port = $this->port;
@@ -482,7 +482,7 @@  discard block
 block discarded – undo
482 482
                         return true;
483 483
                     } else {
484 484
                         $data = [$this->host, $this->port, $this->smtpSecure, $this->username];
485
-                        throw new Exception('Authentication failed ('.implode(',', $data).'): '.$smtp->getLastReply() . PHP_EOL . print_r($smtp->getError(), true));
485
+                        throw new Exception('Authentication failed ('.implode(',', $data).'): '.$smtp->getLastReply().PHP_EOL.print_r($smtp->getError(), true));
486 486
                     }
487 487
                 } else {
488 488
                     throw new Exception('HELO failed: '.$smtp->getLastReply());
Please login to merge, or discard this patch.