Passed
Push — master ( 0fb5fb...9b0d5c )
by Chubarov
02:40
created
src/ServiceProviders/CartServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/SourcesConfigurations/File.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Contracts/SourceConfiguration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Cart\Contracts;
5 5
 
Please login to merge, or discard this patch.