Skip to content
This repository was archived by the owner on Apr 13, 2022. It is now read-only.

Commit 60df8ef

Browse files
Added typehint
1 parent 1b9f10a commit 60df8ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LockerServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function register()
7272
*/
7373
protected function registerLocker(Application $app)
7474
{
75-
$app->singleton('locker', function ($app) {
75+
$app->singleton('locker', function (Application $app) {
7676
$redis = $app['redis']->connection($app->config->get('locker.connection'));
7777

7878
return new Locker($redis);

0 commit comments

Comments
 (0)