Cookies::getAll() 

\nn\t3::Cookies()->getAll(); 

Returns all cookies that are waiting to be set in the middleware to be set in the response.

$cookies = \nn\t3::Cookies()->getAll();
Copied!

| @return array

Source Code 

public function getAll ()
{
	return $this->cookiesToSet;
}
Copied!