Skip to content

Commit 7bacddb

Browse files
committed
fix(old-php): remove commas
1 parent 8ac6e85 commit 7bacddb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/RedisSessionEnhancedServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public function boot(): void
1414
$config = $app['config'];
1515
$handler = (new RedisSessionEnhancerHandler(
1616
clone $app->make('cache')->store('redis'),
17-
$config->get('session.lifetime'),
17+
$config->get('session.lifetime')
1818
))->setContainer($app);
1919
// set the connection
2020
$connection = $config->get('session.connection');

src/SessionHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static function getForUser(
2626
);
2727
})
2828
->sortByDesc('last_activity')
29-
->values(),
29+
->values()
3030
);
3131
}
3232

0 commit comments

Comments
 (0)