@@ -17,7 +17,7 @@ |
||
17 | 17 | { |
18 | 18 | $this->mergeConfigFrom(__DIR__ . '/../config/config.php', 'laracache'); |
19 | 19 | |
20 | - $this->app->bind('laracache', function () { |
|
20 | + $this->app->bind('laracache', function() { |
|
21 | 21 | return new LaraCache; |
22 | 22 | }); |
23 | 23 | } |
@@ -4,7 +4,7 @@ |
||
4 | 4 | |
5 | 5 | abstract class CacheEnum |
6 | 6 | { |
7 | - public function __construct(protected int|string $value) {} |
|
7 | + public function __construct(protected int | string $value) {} |
|
8 | 8 | |
9 | 9 | public static function __callStatic(string $name, array $arguments): self |
10 | 10 | { |