You are here

public function Session::all in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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\Session

Code

public function all() {
  return $this->storage
    ->getBag($this->attributeName)
    ->all();
}