Application class
Running web and cli applications.
package | Default |
---|
run(string|null $path = null
) : void
string
null
request path
runCmd(\Kore\array<string> $argv) : void
\Kore\array<string>
command line argument
\Exception |
thrown when the command class is not found. |
---|
setBasePath(string $basePath) : void
string
bath path ex. '/mybasepath'
setDefaultController(string $defaultController) : void
string
default controller
setNotFound(callable $notFound) : void
callable
not found handler
parseCommand(\Kore\array<string> $argv) : \Kore\array<mixed>
\Kore\array<string>
command line argument
\Kore\array<mixed>
command information
array(
commadn class instance,
command namespace,
arguments,
options
)parseController(string $path) : \Kore\array<mixed>
string
request path
\Kore\array<mixed>
controller information
array(
controller class instance,
controller namespace,
path arguments
)$basePath : string
''
Excluded when parsing the controller namespace. Used in running web applications.
$defaultController : string
'index'
Called if the controller is not specified. If unspecified, the default is 'index'. Used in running web applications.
$notFound : callable
Called when the controller is not found. Used in running web applications.