public function Session::all in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/Session/Session.php \Symfony\Component\HttpFoundation\Session\Session::all()
Returns attributes.
Return value
array Attributes
Overrides SessionInterface::all
File
- vendor/
symfony/ http-foundation/ Session/ Session.php, line 101
Class
- Session
- Session.
Namespace
Symfony\Component\HttpFoundation\SessionCode
public function all() {
return $this->storage
->getBag($this->attributeName)
->all();
}