@@ -5,7 +5,6 @@ |
||
5 | 5 | |
6 | 6 | /** |
7 | 7 | * Class StaticModel |
8 | - |
|
9 | 8 | * @package dameter\abstracts |
10 | 9 | * @author Tõnis Ormisson <[email protected]> |
11 | 10 | */ |
@@ -2,7 +2,7 @@ |
||
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, |
@@ -111,7 +111,7 @@ discard block |
||
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 |
||
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 | /** |