@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Cart\ServiceProviders; |
5 | 5 | |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | */ |
16 | 16 | public function register() |
17 | 17 | { |
18 | - $this->app->bind('cart', function () { |
|
18 | + $this->app->bind('cart', function() { |
|
19 | 19 | $kernel = new Kernel(); |
20 | 20 | $kernel->bootstrapping(); |
21 | 21 | return $kernel->getStorage(); |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Cart\SourcesConfigurations; |
5 | 5 | |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | |
31 | 31 | public function get() : array |
32 | 32 | { |
33 | - $configuration = require $this->pathToFile; |
|
33 | + $configuration = require $this->pathToFile; |
|
34 | 34 | return $configuration; |
35 | 35 | } |
36 | 36 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Cart\Contracts; |
5 | 5 |