Skip to content

Commit b6df2a1

Browse files
driesvintstaylorotwell
authored andcommitted
Apply fixes from StyleCI (#69)
1 parent 3b9ccce commit b6df2a1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Console/TinkerCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function handle()
4343
$this->getApplication()->setCatchExceptions(false);
4444

4545
$config = new Configuration([
46-
'updateCheck' => 'never'
46+
'updateCheck' => 'never',
4747
]);
4848

4949
$config->getPresenter()->addCasters(

src/TinkerServiceProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
namespace Laravel\Tinker;
44

5-
use Illuminate\Foundation\Application as LaravelApplication;
65
use Illuminate\Support\ServiceProvider;
7-
use Laravel\Lumen\Application as LumenApplication;
86
use Laravel\Tinker\Console\TinkerCommand;
7+
use Laravel\Lumen\Application as LumenApplication;
8+
use Illuminate\Foundation\Application as LaravelApplication;
99

1010
class TinkerServiceProvider extends ServiceProvider
1111
{
@@ -23,7 +23,7 @@ class TinkerServiceProvider extends ServiceProvider
2323
*/
2424
public function boot()
2525
{
26-
$source = realpath($raw = __DIR__ . '/../config/tinker.php') ?: $raw;
26+
$source = realpath($raw = __DIR__.'/../config/tinker.php') ?: $raw;
2727

2828
if ($this->app instanceof LaravelApplication && $this->app->runningInConsole()) {
2929
$this->publishes([$source => config_path('tinker.php')]);

0 commit comments

Comments
 (0)