QueueingFactory::queue()

void queue() Queue a cookie to send with the next response. Return Value void

QueueingFactory::make()

Cookie make(string $name, string $value, int $minutes, string $path = null, string $domain = null, bool $secure = false, bool $httpOnly = true) Create a new cookie instance. Parameters string $name string $value int $minutes string $path string $domain bool $secure bool $httpOnly Return Value Cookie

QueueingFactory::getQueuedCookies()

array getQueuedCookies() Get the cookies which have been queued for the next request. Return Value array

QueueingFactory::forget()

Cookie forget(string $name, string $path = null, string $domain = null) Expire the given cookie. Parameters string $name string $path string $domain Return Value Cookie

QueueingFactory::forever()

Cookie forever(string $name, string $value, string $path = null, string $domain = null, bool $secure = false, bool $httpOnly = true) Create a cookie that lasts "forever" (five years). Parameters string $name string $value string $path string $domain bool $secure bool $httpOnly Return Value Cookie

QueueingFactory

QueueingFactory interface QueueingFactory implements Factory (View source) Methods Cookie make(string $name, string $value, int $minutes, string $path = null, string $domain = null, bool $secure = false, bool $httpOnly = true) Create a new cookie instance. from Factory Cookie forever(string $name, string $value, string $path = null, string $domain = null, bool $secure = false, bool $httpOnly = true) Create a cookie that lasts "forever" (five years). from Factory Cookie forget(stri

QueueingDispatcher::pipeThrough()

$this pipeThrough(array $pipes) Set the pipes commands should be piped through before dispatching. Parameters array $pipes Return Value $this

QueueingDispatcher::dispatchToQueue()

mixed dispatchToQueue(mixed $command) Dispatch a command to its appropriate handler behind a queue. Parameters mixed $command Return Value mixed

QueueingDispatcher::dispatchNow()

mixed dispatchNow(mixed $command, Closure $afterResolving = null) Dispatch a command to its appropriate handler in the current process. Parameters mixed $command Closure $afterResolving Return Value mixed

QueueingDispatcher::dispatchFromArray()

mixed dispatchFromArray(mixed $command, array $array) Marshal a command and dispatch it to its appropriate handler. Parameters mixed $command array $array Return Value mixed