Request::header()

string|array header(string $key = null, string|array|null $default = null) Retrieve a header from the request. Parameters string $key string|array|null $default Return Value string|array

AppNameCommand::option()

string|array option(string $key = null) Get the value of a command option. Parameters string $key Return Value string|array

BroadcastServiceProvider::compiles()

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

BroadcastServiceProvider::isDeferred()

bool isDeferred() Determine if the provider is deferred. Return Value bool

Builder::first()

Model|Builder|null first(array $columns = array('*')) Execute the query and get the first result. Parameters array $columns Return Value Model|Builder|null

Application::resourcePath()

string resourcePath() Get the path to the resources directory. Return Value string

FileSessionHandler

FileSessionHandler class FileSessionHandler implements SessionHandlerInterface (View source) Methods void __construct(Filesystem $files, string $path, int $minutes) Create a new file driven handler instance. open($savePath, $sessionName) {@inheritdoc} close() {@inheritdoc} read($sessionId) {@inheritdoc} write($sessionId, $data) {@inheritdoc} destroy($sessionId) {@inheritdoc} gc($lifetime) {@inheritdoc}

Migrator::getMigrationName()

string getMigrationName(string $path) Get the name of the migration. Parameters string $path Return Value string

ConsoleMakeCommand::hasArgument()

bool hasArgument(string|int $name) Determine if the given argument is present. Parameters string|int $name Return Value bool

Filesystem::files()

array files(string|null $directory = null, bool $recursive = false) Get an array of all files in a directory. Parameters string|null $directory bool $recursive Return Value array