diff --git a/laravel/session/drivers/cookie.php b/laravel/session/drivers/cookie.php index d15d7063..63a60eec 100644 --- a/laravel/session/drivers/cookie.php +++ b/laravel/session/drivers/cookie.php @@ -1,6 +1,4 @@ -cookie($config); - // Some session drivers implement the Sweeper interface, meaning that + // Some session drivers implement the Sweeper interface meaning that // they must clean up expired sessions manually. If the driver is a - // sweeper, we need to determine if garbage collection should be - // run for the request. + // sweeper, we'll calculate if we need to run garbage collection. $sweepage = $config['sweepage']; if ($this->driver instanceof Sweeper and (mt_rand(1, $sweepage[1]) <= $sweepage[0]))