Passed
Push — master ( aead3c...426c9b )
by Sergii
08:46
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.