Skip to content

Commit aa07f3b

Browse files
authored
Merge pull request #21 from lucasmichot/feature/add-missing-return-docblocks
Add missing return docblocks.
2 parents d71f533 + 21f3f9d commit aa07f3b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/DumpServerServiceProvider.php

+6-3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ class DumpServerServiceProvider extends ServiceProvider
1212
{
1313
/**
1414
* Bootstrap the application services.
15+
*
16+
* @return void
1517
*/
1618
public function boot()
1719
{
@@ -20,12 +22,13 @@ public function boot()
2022
$this->publishes([
2123
__DIR__.'/../config/config.php' => config_path('debug-server.php'),
2224
], 'config');
23-
2425
}
2526
}
2627

2728
/**
2829
* Register the application services.
30+
*
31+
* @return void
2932
*/
3033
public function register()
3134
{
@@ -43,10 +46,10 @@ public function register()
4346

4447
$connection = new Connection($host, [
4548
'request' => new RequestContextProvider($this->app['request']),
46-
'source' => new SourceContextProvider('utf-8', base_path())
49+
'source' => new SourceContextProvider('utf-8', base_path()),
4750
]);
4851

49-
VarDumper::setHandler(function($var) use ($connection) {
52+
VarDumper::setHandler(function ($var) use ($connection) {
5053
(new Dumper($connection))->dump($var);
5154
});
5255
}

0 commit comments

Comments
 (0)