Passed
Branch master (ddca44)
by Anton
06:15
created
Category
config/optimus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 return [
15 15
 
Please login to merge, or discard this patch.
src/OptimusFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Cog\Laravel\Optimus;
15 15
 
Please login to merge, or discard this patch.
src/Facades/Optimus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Cog\Laravel\Optimus\Facades;
15 15
 
Please login to merge, or discard this patch.
src/OptimusManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Cog\Laravel\Optimus;
15 15
 
Please login to merge, or discard this patch.
src/Providers/OptimusServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Cog\Laravel\Optimus\Providers;
15 15
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      */
90 90
     protected function bindFactory()
91 91
     {
92
-        $this->app->singleton('optimus.factory', function () {
92
+        $this->app->singleton('optimus.factory', function() {
93 93
             return new OptimusFactory;
94 94
         });
95 95
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      */
104 104
     protected function bindManager()
105 105
     {
106
-        $this->app->singleton('optimus', function (Container $app) {
106
+        $this->app->singleton('optimus', function(Container $app) {
107 107
             $config = $app['config'];
108 108
             $factory = $app['optimus.factory'];
109 109
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      */
121 121
     protected function bindOptimus()
122 122
     {
123
-        $this->app->bind('optimus.connection', function (Container $app) {
123
+        $this->app->bind('optimus.connection', function(Container $app) {
124 124
             $manager = $app['optimus'];
125 125
 
126 126
             return $manager->connection();
Please login to merge, or discard this patch.