Skip to content

Commit b56a594

Browse files
committed
Remove PHP7.1 features
1 parent 8bece0b commit b56a594

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Lodash/Debug/DebugServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
class DebugServiceProvider extends ServiceProvider
1818
{
19-
public function boot(): void
19+
public function boot()
2020
{
2121
$ips = config('lodash.debug.ips');
2222
$ip = app(Request::class)->getClientIp();
@@ -25,7 +25,7 @@ public function boot(): void
2525
}
2626
}
2727

28-
public function register(): void
28+
public function register()
2929
{
3030
}
3131
}

src/Lodash/LodashServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616

1717
class LodashServiceProvider extends ServiceProvider
1818
{
19-
public function boot(): void
19+
public function boot()
2020
{
2121
$this->publishes([
2222
__DIR__ . '/../config/config.php' => config_path('lodash.php'),
2323
]);
2424
}
2525

26-
public function register(): void
26+
public function register()
2727
{
2828

2929
$this->app->singleton(

0 commit comments

Comments
 (0)