Skip to content

Commit

Permalink
Apply fixes from StyleCI (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints authored and taylorotwell committed Apr 19, 2019
1 parent 3b9ccce commit b6df2a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Console/TinkerCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function handle()
$this->getApplication()->setCatchExceptions(false);

$config = new Configuration([
'updateCheck' => 'never'
'updateCheck' => 'never',
]);

$config->getPresenter()->addCasters(
Expand Down
6 changes: 3 additions & 3 deletions src/TinkerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Laravel\Tinker;

use Illuminate\Foundation\Application as LaravelApplication;
use Illuminate\Support\ServiceProvider;
use Laravel\Lumen\Application as LumenApplication;
use Laravel\Tinker\Console\TinkerCommand;
use Laravel\Lumen\Application as LumenApplication;
use Illuminate\Foundation\Application as LaravelApplication;

class TinkerServiceProvider extends ServiceProvider
{
Expand All @@ -23,7 +23,7 @@ class TinkerServiceProvider extends ServiceProvider
*/
public function boot()
{
$source = realpath($raw = __DIR__ . '/../config/tinker.php') ?: $raw;
$source = realpath($raw = __DIR__.'/../config/tinker.php') ?: $raw;

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

0 comments on commit b6df2a1

Please sign in to comment.