RemindersControllerCommand::call()

int call(string $command, array $arguments = array()) Call another console command. Parameters string $command array $arguments Return Value int

DatabaseQueue::pop()

Job|null pop(string $queue = null) Pop the next job off of the queue. Parameters string $queue Return Value Job|null

MorphToMany::addEagerConstraints()

void addEagerConstraints(array $models) Set the constraints for an eager load of the relation. Parameters array $models Return Value void

Collection::forPage()

Collection forPage(int $page, int $perPage) "Paginate" the collection by slicing it into a smaller collection. Parameters int $page int $perPage Return Value Collection

Model::morphTo()

MorphTo morphTo(string $name = null, string $type = null, string $id = null) Define a polymorphic, inverse one-to-one or many relationship. Parameters string $name string $type string $id Return Value MorphTo

Connection::logQuery()

void logQuery(string $query, array $bindings, float|null $time = null) Log a query in the connection's query log. Parameters string $query array $bindings float|null $time Return Value void

MorphToMany::__clone()

void __clone() Force a clone of the underlying query builder when cloning. Return Value void

RedisStore::increment()

int|bool increment(string $key, mixed $value = 1) Increment the value of an item in the cache. Parameters string $key mixed $value Return Value int|bool

WorkerStopping

WorkerStopping class WorkerStopping (View source)

TestCase::dontSeeElement()

$this dontSeeElement(string $selector, array $attributes = array()) Assert that an element is not present on the page. Parameters string $selector array $attributes Return Value $this