File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ public function handle()
43
43
$ this ->getApplication ()->setCatchExceptions (false );
44
44
45
45
$ config = new Configuration ([
46
- 'updateCheck ' => 'never '
46
+ 'updateCheck ' => 'never ' ,
47
47
]);
48
48
49
49
$ config ->getPresenter ()->addCasters (
Original file line number Diff line number Diff line change 2
2
3
3
namespace Laravel \Tinker ;
4
4
5
- use Illuminate \Foundation \Application as LaravelApplication ;
6
5
use Illuminate \Support \ServiceProvider ;
7
- use Laravel \Lumen \Application as LumenApplication ;
8
6
use Laravel \Tinker \Console \TinkerCommand ;
7
+ use Laravel \Lumen \Application as LumenApplication ;
8
+ use Illuminate \Foundation \Application as LaravelApplication ;
9
9
10
10
class TinkerServiceProvider extends ServiceProvider
11
11
{
@@ -23,7 +23,7 @@ class TinkerServiceProvider extends ServiceProvider
23
23
*/
24
24
public function boot ()
25
25
{
26
- $ source = realpath ($ raw = __DIR__ . '/../config/tinker.php ' ) ?: $ raw ;
26
+ $ source = realpath ($ raw = __DIR__ . '/../config/tinker.php ' ) ?: $ raw ;
27
27
28
28
if ($ this ->app instanceof LaravelApplication && $ this ->app ->runningInConsole ()) {
29
29
$ this ->publishes ([$ source => config_path ('tinker.php ' )]);
You can’t perform that action at this time.
0 commit comments