Passed
Push — main ( 858edf...128fac )
by Sammy
01:51 queued 14s
created
src/TightModel.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
     public function __toString()
14 14
     {
15
-        return static::class_short_name() . ' #' . $this->getId();
15
+        return static::class_short_name().' #'.$this->getId();
16 16
     }
17 17
 
18 18
     public function immortal(): bool
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
      */
151 151
     public static function tableAlias(): string
152 152
     {
153
-        if (defined(get_called_class() . '::TABLE_ALIAS')) {
153
+        if (defined(get_called_class().'::TABLE_ALIAS')) {
154 154
             return get_called_class()::TABLE_ALIAS;
155 155
         }
156 156
 
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 
160 160
     public static function model_type(): string
161 161
     {
162
-        if (defined(get_called_class() . '::MODEL_TYPE')) {
162
+        if (defined(get_called_class().'::MODEL_TYPE')) {
163 163
             return get_called_class()::MODEL_TYPE;
164 164
         }
165 165
 
Please login to merge, or discard this patch.