@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | |
13 | 13 | public function __toString() |
14 | 14 | { |
15 | - return static::class_short_name() . ' #' . $this->get_id(); |
|
15 | + return static::class_short_name().' #'.$this->get_id(); |
|
16 | 16 | } |
17 | 17 | |
18 | 18 | public function immortal(): bool |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | |
27 | 27 | $extraction_table = $extraction_class::table(); |
28 | 28 | foreach ($extraction_table->columns() as $column_name => $column) { |
29 | - $probe_name = $extraction_class::table_alias() . '_' . $column_name; |
|
29 | + $probe_name = $extraction_class::table_alias().'_'.$column_name; |
|
30 | 30 | |
31 | 31 | if (!is_null($probe_res = $this->get($probe_name))) { |
32 | 32 | $extract_model->set($column_name, $probe_res); |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | */ |
177 | 177 | public static function table_alias(): string |
178 | 178 | { |
179 | - if (defined(get_called_class() . '::TABLE_ALIAS')) { |
|
179 | + if (defined(get_called_class().'::TABLE_ALIAS')) { |
|
180 | 180 | return get_called_class()::TABLE_ALIAS; |
181 | 181 | } |
182 | 182 | |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | |
186 | 186 | public static function model_type(): string |
187 | 187 | { |
188 | - if (defined(get_called_class() . '::MODEL_TYPE')) { |
|
188 | + if (defined(get_called_class().'::MODEL_TYPE')) { |
|
189 | 189 | return get_called_class()::MODEL_TYPE; |
190 | 190 | } |
191 | 191 |