File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ class DumpServerServiceProvider extends ServiceProvider
12
12
{
13
13
/**
14
14
* Bootstrap the application services.
15
+ *
16
+ * @return void
15
17
*/
16
18
public function boot ()
17
19
{
@@ -20,12 +22,13 @@ public function boot()
20
22
$ this ->publishes ([
21
23
__DIR__ .'/../config/config.php ' => config_path ('debug-server.php ' ),
22
24
], 'config ' );
23
-
24
25
}
25
26
}
26
27
27
28
/**
28
29
* Register the application services.
30
+ *
31
+ * @return void
29
32
*/
30
33
public function register ()
31
34
{
@@ -43,10 +46,10 @@ public function register()
43
46
44
47
$ connection = new Connection ($ host , [
45
48
'request ' => new RequestContextProvider ($ this ->app ['request ' ]),
46
- 'source ' => new SourceContextProvider ('utf-8 ' , base_path ())
49
+ 'source ' => new SourceContextProvider ('utf-8 ' , base_path ()),
47
50
]);
48
51
49
- VarDumper::setHandler (function ($ var ) use ($ connection ) {
52
+ VarDumper::setHandler (function ($ var ) use ($ connection ) {
50
53
(new Dumper ($ connection ))->dump ($ var );
51
54
});
52
55
}
You can’t perform that action at this time.
0 commit comments