Completed
Push — master ( b5cc14...d04358 )
by Sergii
23:17 queued 02:11
created
tests/app/bootstrap/lumen.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,11 +7,11 @@
 block discarded – undo
7 7
  */
8 8
 
9 9
 $app = new \Laravel\Lumen\Application(
10
-    __DIR__ . '/../'
10
+    __DIR__.'/../'
11 11
 );
12 12
 
13
-$app->instance('path.config', app()->basePath() . DIRECTORY_SEPARATOR . 'config');
14
-$app->instance('path.storage', app()->basePath() . DIRECTORY_SEPARATOR . 'storage');
13
+$app->instance('path.config', app()->basePath().DIRECTORY_SEPARATOR.'config');
14
+$app->instance('path.storage', app()->basePath().DIRECTORY_SEPARATOR.'storage');
15 15
 
16 16
 $app->singleton(
17 17
     \Illuminate\Contracts\Http\Kernel::class,
Please login to merge, or discard this patch.
tests/app/bootstrap/app.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@
 block discarded – undo
6 6
  * Time: 4:18 PM
7 7
  */
8 8
 
9
-require __DIR__ . '/../../../vendor/autoload.php';
9
+require __DIR__.'/../../../vendor/autoload.php';
10 10
 
11 11
 $isLumen = class_exists('\Laravel\Lumen\Application');
12 12
 
13
-return require ($isLumen ? __DIR__ . '/lumen.php' : __DIR__ . '/laravel.php');
14 13
\ No newline at end of file
14
+return require ($isLumen ? __DIR__.'/lumen.php' : __DIR__.'/laravel.php');
15 15
\ No newline at end of file
Please login to merge, or discard this patch.
tests/_bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * Time: 4:31 PM
7 7
  */
8 8
 
9
-$file = __DIR__ . '/_output/database.sqlite';
9
+$file = __DIR__.'/_output/database.sqlite';
10 10
 if (!file_exists($file)) {
11 11
     file_put_contents($file, '');
12 12
 }
13 13
\ No newline at end of file
Please login to merge, or discard this patch.
src/Routers/Router.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         $middleware = isset($config['middleware']) ? explode('|', $config['middleware']) : [];
30 30
         $namespace = isset($config['namespace']) ? $config['namespace'] : 'App\Controllers\WAMP';
31 31
 
32
-        $this->groups[] = (object)[
32
+        $this->groups[] = (object) [
33 33
             'middleware' => $middleware,
34 34
             'namespace'  => $namespace,
35 35
             'prefix'     => isset($config['prefix']) ? $config['prefix'] : '',
Please login to merge, or discard this patch.
src/WAMPServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
                  ] as $alias => $abstract) {
53 53
 
54 54
             $this->app->singleton($abstract[0], $abstract[1]);
55
-            $this->app->singleton($alias, function () use ($abstract) {
55
+            $this->app->singleton($alias, function() use ($abstract) {
56 56
                 return app()->make($abstract[0]);
57 57
             });
58 58
         }
Please login to merge, or discard this patch.