Completed
Push — master ( 7763a5...85df34 )
by Tõnis
04:35
created
src/TypeModel.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 
6 6
 /**
7 7
  * Class StaticModel
8
-
9 8
  * @package dameter\abstracts
10 9
  * @author Tõnis Ormisson <[email protected]>
11 10
  */
Please login to merge, or discard this patch.
src/messages/config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 return [
4 4
     // string, required, root directory of all source files
5
-    'sourcePath' => __DIR__ . DIRECTORY_SEPARATOR . '..',
5
+    'sourcePath' => __DIR__.DIRECTORY_SEPARATOR.'..',
6 6
     'languages' => ['et'],
7 7
     'translator' => 'Yii::t',
8 8
     'sort' => false,
Please login to merge, or discard this patch.
src/models/Field.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
                 return "integer";
112 112
                 break;
113 113
             case self::SYSFIELD_TOKEN:
114
-                return "string(36) " . $this->tokenFieldCollation;
114
+                return "string(36) ".$this->tokenFieldCollation;
115 115
                 break;
116 116
             case self::SYSFIELD_REFURL:
117 117
                 return "text";
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
         if ($driverName == 'sqlsrv' || $driverName == 'dblib' || $driverName == 'mssql') {
154 154
             return " COLLATE 'SQL_Latin1_General_CP1_CS_AS'";
155 155
         }
156
-        throw new \Exception('Unsupported database engine ' . $driverName);
156
+        throw new \Exception('Unsupported database engine '.$driverName);
157 157
     }
158 158
 
159 159
     /**
Please login to merge, or discard this patch.