@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | public function runEndpointsHashedIdsDecoder() |
30 | 30 | { |
31 | 31 | if (Config::get('hello.hash-id')) { |
32 | - Route::bind('id', function ($id, $route) { |
|
32 | + Route::bind('id', function($id, $route) { |
|
33 | 33 | // skip decoding some endpoints |
34 | 34 | if (!in_array($route->uri(), $this->skippedEndpoints)) { |
35 | 35 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | { |
59 | 59 | // hash the ID only if hash-id enabled in the config |
60 | 60 | if (Config::get('hello.hash-id')) { |
61 | - return $this->encoder(($key) ? : $this->getKey()); |
|
61 | + return $this->encoder(($key) ?: $this->getKey()); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | return $this->getKey(); |