@@ -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 | } |