abstract class Application

Application.

Properties

static protected Application $instance Singleton instance of self.
protected float $startTime Application start time.
protected Container $container Container.
protected Config $config Config instance.
protected string $charset Application charset.
protected string $language Application language.
protected string $applicationPath Application path.
protected string $storagePath Application storage path.
protected array $packages Booted packages.

Methods

__construct(string $applicationPath)

Constructor.

static Application
start(string $applicationPath)

Starts the application and returns a singleton instance of the application.

static Application
instance()

Returns a singleton instance of the application.

float
getStartTime()

Returns the application start time.

getContainer()

Returns the container instance.

getConfig()

Returns the config instance.

string
getCharset()

Returns the application charset.

string
getLanguage()

Returns the application language.

setLanguage(array $language)

Sets the application language settings.

string
getPath()

Gets the application path.

string
getStoragePath()

Gets the application storage path.

array
getPackages()

Returns all the application packages.

getPackage(string $package)

Returns a package by its name.

string
getNamespace(bool $prefix = false)

Returns the application namespace.

bool
isCommandLine()

Is the application running in the CLI?

string|null
getEnvironment()

Returns the Mako environment. NULL is returned if no environment is specified.

configure()

Configure.

serviceRegistrar(string $type)

Registers services in the container.

registerCLIServices()

Registers command line services.

registerWebServices()

Registers web services.

registerServices()

Register services in the container.

bootstrap()

Loads the application bootstrap file.

packageBooter(string $type)

Boots packages.

bootCliPackages()

Boots command line packages.

bootWebPackages()

Boots web packages.

bootPackages()

Boot packages.

containerFactory()

Creates a container instance.

configFactory()

Creates a configuration instance.

initialize()

Sets up the framework core.

$this
boot()

Boots the application.

run()

Runs the application.

Details

at line 101
__construct(string $applicationPath)

Constructor.

Parameters

string $applicationPath Application path

at line 115
static Application start(string $applicationPath)

Starts the application and returns a singleton instance of the application.

Parameters

string $applicationPath Application path

Return Value

Application

at line 132
static Application instance()

Returns a singleton instance of the application.

Return Value

Application

at line 147
float getStartTime()

Returns the application start time.

Return Value

float

at line 157
Container getContainer()

Returns the container instance.

Return Value

Container

at line 167
Config getConfig()

Returns the config instance.

Return Value

Config

at line 177
string getCharset()

Returns the application charset.

Return Value

string

at line 187
string getLanguage()

Returns the application language.

Return Value

string

at line 197
setLanguage(array $language)

Sets the application language settings.

Parameters

array $language Application language settings

at line 212
string getPath()

Gets the application path.

Return Value

string

at line 222
string getStoragePath()

Gets the application storage path.

Return Value

string

at line 232
array getPackages()

Returns all the application packages.

Return Value

array

at line 243
Package getPackage(string $package)

Returns a package by its name.

Parameters

string $package Package name

Return Value

Package

at line 259
string getNamespace(bool $prefix = false)

Returns the application namespace.

Parameters

bool $prefix Prefix the namespace with a slash?

Return Value

string

at line 276
bool isCommandLine()

Is the application running in the CLI?

Return Value

bool

at line 286
string|null getEnvironment()

Returns the Mako environment. NULL is returned if no environment is specified.

Return Value

string|null

at line 294
protected configure()

Configure.

at line 326
protected serviceRegistrar(string $type)

Registers services in the container.

Parameters

string $type Service type

at line 337
protected registerCLIServices()

Registers command line services.

at line 345
protected registerWebServices()

Registers web services.

at line 353
protected registerServices()

Register services in the container.

at line 374
protected bootstrap()

Loads the application bootstrap file.

at line 387
protected packageBooter(string $type)

Boots packages.

Parameters

string $type Package type

at line 402
protected bootCliPackages()

Boots command line packages.

at line 410
protected bootWebPackages()

Boots web packages.

at line 418
protected bootPackages()

Boot packages.

at line 439
protected Container containerFactory()

Creates a container instance.

Return Value

Container

at line 449
protected Config configFactory()

Creates a configuration instance.

Return Value

Config

at line 457
protected initialize()

Sets up the framework core.

at line 485
$this boot()

Boots the application.

Return Value

$this

at line 515
abstract run()

Runs the application.