class SDK

Properties

protected Application $app
static protected SDK $instance

Methods

mixed
make(string $abstract, array $parameters = [])

Resolve the given type from the container.

static SDK
init(string|null $basePath = null)

No description

void
singleton(string $abstract, Closure|string|null $concrete = null)

Register a shared binding in the container.

Application
getApp()

No description

void
handle(Request $request = null)

No description

Details

at line 45
mixed make(string $abstract, array $parameters = [])

Resolve the given type from the container.

(Overriding Container::make)

Parameters

string $abstract
array $parameters

Return Value

mixed

at line 55
static SDK init(string|null $basePath = null)

Parameters

string|null $basePath

Return Value

SDK

Exceptions

Exception

at line 72
void singleton(string $abstract, Closure|string|null $concrete = null)

Register a shared binding in the container.

Parameters

string $abstract
Closure|string|null $concrete

Return Value

void

at line 80
Application getApp()

Return Value

Application

at line 89
void handle(Request $request = null)

Parameters

Request $request = null

Return Value

void