@@ -78,7 +78,7 @@ |
||
78 | 78 | 'move' => 'moves', ]; |
79 | 79 | $lowercased_word = strtolower($word); |
80 | 80 | foreach ($uncountable as $_uncountable) { |
81 | - if (substr($lowercased_word, (-1 * strlen($_uncountable))) == $_uncountable) { |
|
81 | + if (substr($lowercased_word, (-1*strlen($_uncountable))) == $_uncountable) { |
|
82 | 82 | return $word; |
83 | 83 | } |
84 | 84 | } |
@@ -74,7 +74,7 @@ |
||
74 | 74 | */ |
75 | 75 | public function loadEnv() |
76 | 76 | { |
77 | - if (! getenv('APP_ENV')) { |
|
77 | + if (!getenv('APP_ENV')) { |
|
78 | 78 | $dotenv = new Dotenv(__DIR__.'/../../'); |
79 | 79 | $dotenv->load(); |
80 | 80 | } |
@@ -202,7 +202,7 @@ |
||
202 | 202 | $unexpectedFields = []; |
203 | 203 | |
204 | 204 | foreach ($userSetterArray as $key => $val) { |
205 | - if (! in_array($key, $tableColumn)) { |
|
205 | + if (!in_array($key, $tableColumn)) { |
|
206 | 206 | $unexpectedFields[] = $key; |
207 | 207 | } |
208 | 208 | } |