Application class

Running web and cli applications.

package Default

 Methods

Running web applications

run(string|null $path = null) : void

Parameters

$path

stringnull

request path

Running cli applications

runCmd(\Kore\array<string> $argv) : void

Parameters

$argv

\Kore\array<string>

command line argument

Exceptions

\Exception thrown when the command class is not found.

Set the base path

setBasePath(string $basePath) : void

Parameters

$basePath

string

bath path ex. '/mybasepath'

Set the default controller

setDefaultController(string $defaultController) : void

Parameters

$defaultController

string

default controller

Set the not found handler

setNotFound(callable $notFound) : void

Parameters

$notFound

callable

not found handler

Parse the command namespace from the command line argument

parseCommand(\Kore\array<string> $argv) : \Kore\array<mixed>

Parameters

$argv

\Kore\array<string>

command line argument

Returns

\Kore\array<mixed>command information array( commadn class instance, command namespace, arguments, options )

Parse the controller namespace from the request path

parseController(string $path) : \Kore\array<mixed>

Parameters

$path

string

request path

Returns

\Kore\array<mixed>controller information array( controller class instance, controller namespace, path arguments )

 Properties

 

Base path

$basePath : string

Default

''

Excluded when parsing the controller namespace. Used in running web applications.

 

Default controller

$defaultController : string

Default

'index'

Called if the controller is not specified. If unspecified, the default is 'index'. Used in running web applications.

 

Not found handler

$notFound : callable

Default

Called when the controller is not found. Used in running web applications.