MorphToMany::getOtherKey()

string getOtherKey() Get the fully qualified "other key" for the relation. Return Value string

Builder::orderBy()

$this orderBy(string $column, string $direction = 'asc') Add an "order by" clause to the query. Parameters string $column string $direction Return Value $this

NotIn::__toString()

string __toString() Convert the rule to a validation string. Return Value string

ConsoleServiceProvider

ConsoleServiceProvider class ConsoleServiceProvider extends ServiceProvider (View source) Methods void __construct(Application $app) Create a new service provider instance. from ServiceProvider void register() Register the service provider. static array pathsToPublish(string $provider = null, string $group = null) Get the paths to publish. from ServiceProvider void commands(array|mixed $commands) Register the package's custom Artisan commands. from ServiceProvider array p

MorphOneOrMany::getBaseQuery()

Builder getBaseQuery() Get the base query builder driving the Eloquent builder. Return Value Builder

Translator::setParsedKey()

void setParsedKey(string $key, array $parsed) Set the parsed value of a key. Parameters string $key array $parsed Return Value void

Connection::prepareBindings()

array prepareBindings(array $bindings) Prepare the query bindings for execution. Parameters array $bindings Return Value array

ConsoleServiceProvider::compiles()

static array compiles() Get a list of files that should be compiled for the package. Return Value array

Arr::prepend()

static array prepend(array $array, mixed $value, mixed $key = null) Push an item onto the beginning of an array. Parameters array $array mixed $value mixed $key Return Value array

HandlerResolver

HandlerResolver interface HandlerResolver (View source) Methods mixed resolveHandler(mixed $command) Get the handler instance for the given command. string getHandlerClass(mixed $command) Get the handler class for the given command. string getHandlerMethod(mixed $command) Get the handler method for the given command. void maps(array $commands) Register command to handler mappings. void mapUsing(Closure $mapper) Register a fallback mapper callback.