Skip to content

Commit 517f208

Browse files
RFreijStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent 5f36c0d commit 517f208

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

src/Providers/ServiceProvider.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ public function boot()
3131
public function register()
3232
{
3333
$this->mergeConfigFrom(
34-
$this->getDefaultConfigFilePath('synchronizer'), 'synchronizer'
34+
$this->getDefaultConfigFilePath('synchronizer'),
35+
'synchronizer'
3536
);
3637
}
3738

tests/BrowserKitTestCase.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88

99
abstract class BrowserKitTestCase extends BaseTestCase
1010
{
11-
use CreatesApplication, MockeryPHPUnitIntegration;
11+
use CreatesApplication;
12+
use MockeryPHPUnitIntegration;
1213

1314
public $baseUrl = 'http://localhost';
1415
}

tests/CreatesApplication.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function setUp()
2323
parent::setUp();
2424
$this->artisan('migrate', ['--database' => 'sqlite']);
2525
$this->loadLaravelMigrations(['--database' => 'sqlite']);
26-
$this->withFactories(__DIR__.'/factories');
26+
$this->withFactories(__DIR__ . '/factories');
2727
}
2828

2929
/**

tests/TestCase.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77

88
abstract class TestCase extends BaseTestCase
99
{
10-
use CreatesApplication, MockeryPHPUnitIntegration;
10+
use CreatesApplication;
11+
use MockeryPHPUnitIntegration;
1112
}

0 commit comments

Comments
 (0)