InteractsWithSession::seeInSession()

void seeInSession(string|array $key, mixed $value = null) Assert that the session has a given value. Parameters string|array $key mixed $value Return Value void

InteractsWithSession::flushSession()

void flushSession() Flush all of the current session data. Return Value void

InteractsWithSession::assertSessionMissing()

void assertSessionMissing(string|array $key) Assert that the session does not have a given key. Parameters string|array $key Return Value void

InteractsWithSession::assertSessionHasErrors()

void assertSessionHasErrors(string|array $bindings = array(), mixed $format = null) Assert that the session has errors bound. Parameters string|array $bindings mixed $format Return Value void

InteractsWithSession::assertSessionHasAll()

void assertSessionHasAll(array $bindings) Assert that the session has a given list of values. Parameters array $bindings Return Value void

InteractsWithSession::assertSessionHas()

void assertSessionHas(string|array $key, mixed $value = null) Assert that the session has a given value. Parameters string|array $key mixed $value Return Value void

InteractsWithSession::assertHasOldInput()

void assertHasOldInput() Assert that the session has old input. Return Value void

InteractsWithSession

InteractsWithSession trait InteractsWithSession (View source) Methods $this withSession(array $data) Set the session to the given array. void session(array $data) Set the session to the given array. void flushSession() Flush all of the current session data. void seeInSession(string|array $key, mixed $value = null) Assert that the session has a given value. void assertSessionHas(string|array $key, mixed $value = null) Assert that the session has a given value. void

InteractsWithQueue::setJob()

$this setJob(Job $job) Set the base queue job instance. Parameters Job $job Return Value $this

InteractsWithQueue::release()

void release(int $delay) Release the job back into the queue. Parameters int $delay Return Value void