You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.
Make sure you read Issues Guideline and answer these questions before submitting your issue. Thanks!
(Any non-English issues will be closed immediately.)
Please provide your PHP and Swoole version. (php -v and php --ri swoole) 7.2.21-1+ubuntu18.04.1+deb.sury.org+1 and swoole-4.4.3
Please provide your Laravel/Lumen version. laravel5.8.31
Which release version of this package are you using? 2.6
What did you do? If possible, provide a recipe for reproducing the error.
there is not option named session on laravel5.8. so add a option named session whatever just not null will fix it. did i missed somthing in doc?
SwooleTW\Http\Websocket\Middleware\StartSession
public function handle($request, Closure $next)
{
if ($this->sessionConfigured()) {
$request->setLaravelSession($this->startSession($request));
}
return $next($request);
}
// problem here
protected function sessionConfigured()
{
return Arr::get($this->manager->getSessionConfig(), 'session') !== null;
}
The text was updated successfully, but these errors were encountered:
Make sure you read Issues Guideline and answer these questions before submitting your issue. Thanks!
(Any non-English issues will be closed immediately.)
Please provide your PHP and Swoole version. (
php -v
andphp --ri swoole
)7.2.21-1+ubuntu18.04.1+deb.sury.org+1
andswoole-4.4.3
Please provide your Laravel/Lumen version.
laravel5.8.31
Which release version of this package are you using?
2.6
What did you do? If possible, provide a recipe for reproducing the error.
there is not option named session on laravel5.8. so add a option named session whatever just not null will fix it. did i missed somthing in doc?
The text was updated successfully, but these errors were encountered: