class Blade extends Facade

Properties

static protected $app

The application instance being facaded.

from  Facade
static protected array $resolvedInstance

The resolved object instances.

from  Facade
static protected bool $cached

Indicates if the resolved instance should be cached.

from  Facade

Methods

static void
resolved(Closure $callback)

Run a Closure when the facade has been resolved.

from  Facade
static 
spy()

Convert the facade into a Mockery spy.

from  Facade
static 
partialMock()

Initiate a partial mock on the facade.

from  Facade
static 
shouldReceive()

Initiate a mock expectation on the facade.

from  Facade
static 
expects()

Initiate a mock expectation on the facade.

from  Facade
static 
createFreshMockInstance()

Create a fresh mock instance for the given class.

from  Facade
static 
createMock()

Create a fresh mock instance for the given class.

from  Facade
static bool
isMock()

Determines whether a mock is set as the instance of the facade.

from  Facade
static string|null
getMockableClass()

Get the mockable class for the bound instance.

from  Facade
static 
swap(mixed $instance)

Hotswap the underlying instance behind the facade.

from  Facade
static bool
isFake()

Determines whether a "fake" has been set as the facade instance.

from  Facade
static mixed
getFacadeRoot()

Get the root object behind the facade.

from  Facade
static string
getFacadeAccessor()

Get the registered name of the component.

static mixed
resolveFacadeInstance(string $name)

Resolve the facade root instance from the container.

from  Facade
static void
clearResolvedInstance(string|null $name = null)

Clear a resolved facade instance.

from  Facade
static void
clearResolvedInstances()

Clear all of the resolved instances.

from  Facade
static Collection
defaultAliases()

Get the application default aliases.

from  Facade
static 
getFacadeApplication()

Get the application instance behind the facade.

from  Facade
static void
setFacadeApplication(mixed $app)

Set the application instance.

from  Facade
static 
__callStatic(string $method, array $args)

Handle dynamic, static calls to the object.

from  Facade
static void
compile(string|null $path = 'null')

No description

static string
getPath()

No description

static void
setPath(string $path)

No description

static string
compileString(string $value)

No description

static string
render(string $string, array $data = '[]', bool $deleteCachedView = 'false')

No description

static string
renderComponent(Component $component)

No description

static string
stripParentheses(string $expression)

No description

static void
extend(callable $compiler)

No description

static array
getExtensions()

No description

static void
if(string $name, callable $callback)

No description

static bool
check(string $name, mixed ...$parameters)

No description

static void
component(string $alias, string|null $class = 'null', string $prefix = '\'\'')

No description

static void
components(array $components, string $prefix = '\'\'')

No description

static array
getClassComponentAliases()

No description

static void
anonymousComponentPath(string $path, string|null $prefix = 'null')

No description

static void
anonymousComponentNamespace(string $directory, string|null $prefix = 'null')

No description

static void
componentNamespace(string $namespace, string $prefix)

No description

static array
getAnonymousComponentPaths()

No description

static array
static array
getClassComponentNamespaces()

No description

static void
aliasComponent(string $path, string|null $alias = 'null')

No description

static void
include(string $path, string|null $alias = 'null')

No description

static void
aliasInclude(string $path, string|null $alias = 'null')

No description

static void
bindDirective(string $name, callable $handler)

No description

static void
directive(string $name, callable $handler, bool $bind = 'false')

No description

static array
getCustomDirectives()

No description

static BladeCompiler
prepareStringsForCompilationUsing(callable $callback)

No description

static void
precompiler(callable $precompiler)

No description

static string
usingEchoFormat(string $format, callable $callback)

No description

static void
setEchoFormat(string $format)

No description

static void
withDoubleEncoding()

No description

static void
withoutDoubleEncoding()

No description

static void
withoutComponentTags()

No description

static string
getCompiledPath(string $path)

No description

static bool
isExpired(string $path)

No description

static string
newComponentHash(string $component)

No description

static string
compileClassComponentOpening(string $component, string $alias, string $data, string $hash)

No description

static string
compileEndComponentClass()

No description

static mixed
sanitizeComponentAttribute(mixed $value)

No description

static string
compileEndOnce()

No description

static void
stringable(callable|string $class, callable|null $handler = 'null')

No description

static string
compileEchos(string $value)

No description

static mixed
applyEchoHandler(mixed $value)

No description

Details

in Facade at line 55
static void resolved(Closure $callback)

Run a Closure when the facade has been resolved.

Boot-only. The callback is registered on the worker-global container and runs for every subsequent resolution of the facade accessor.

Parameters

Closure $callback

Return Value

void

in Facade at line 71
static spy()

Convert the facade into a Mockery spy.

in Facade at line 89
static partialMock()

Initiate a partial mock on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 105
static shouldReceive()

Initiate a mock expectation on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 121
static expects()

Initiate a mock expectation on the facade.

Tests only. Swaps the resolved facade instance for the worker lifetime.

in Facade at line 135
static protected createFreshMockInstance()

Create a fresh mock instance for the given class.

in Facade at line 147
static protected createMock()

Create a fresh mock instance for the given class.

in Facade at line 157
static protected bool isMock()

Determines whether a mock is set as the instance of the facade.

Return Value

bool

in Facade at line 168
static protected string|null getMockableClass()

Get the mockable class for the bound instance.

Return Value

string|null

in Facade at line 184
static swap(mixed $instance)

Hotswap the underlying instance behind the facade.

Tests only. Replaces the worker-wide resolved facade instance and container binding; runtime use races across coroutines and changes every subsequent facade call.

Parameters

mixed $instance

in Facade at line 196
static bool isFake()

Determines whether a "fake" has been set as the facade instance.

Return Value

bool

in Facade at line 207
static mixed getFacadeRoot()

Get the root object behind the facade.

Return Value

mixed

at line 56
static protected string getFacadeAccessor()

Get the registered name of the component.

Return Value

string

in Facade at line 223
static protected mixed resolveFacadeInstance(string $name)

Resolve the facade root instance from the container.

Parameters

string $name

Return Value

mixed

in Facade at line 246
static void clearResolvedInstance(string|null $name = null)

Clear a resolved facade instance.

Boot or tests only. Clears a worker-wide facade cache entry; concurrent coroutines may still hold the previous resolved instance.

Parameters

string|null $name

Return Value

void

in Facade at line 257
static void clearResolvedInstances()

Clear all of the resolved instances.

Boot or tests only. Clears the worker-wide facade cache; concurrent coroutines may still hold previously resolved instances.

Return Value

void

in Facade at line 265
static Collection defaultAliases()

Get the application default aliases.

Return Value

Collection

in Facade at line 324
static getFacadeApplication()

Get the application instance behind the facade.

in Facade at line 337
static void setFacadeApplication(mixed $app)

Set the application instance.

Tests only. Replaces the worker-wide facade application reference; runtime use races across coroutines and breaks every facade lookup.

Parameters

mixed $app

Return Value

void

in Facade at line 347
static __callStatic(string $method, array $args)

Handle dynamic, static calls to the object.

Parameters

string $method
array $args

Exceptions

RuntimeException

at line 54
static void compile(string|null $path = 'null')

No description

Parameters

string|null $path

Return Value

void

at line 54
static string getPath()

No description

Return Value

string

at line 54
static void setPath(string $path)

No description

Parameters

string $path

Return Value

void

at line 54
static string compileString(string $value)

No description

Parameters

string $value

Return Value

string

at line 54
static string render(string $string, array $data = '[]', bool $deleteCachedView = 'false')

No description

Parameters

string $string
array $data
bool $deleteCachedView

Return Value

string

at line 54
static string renderComponent(Component $component)

No description

Parameters

Component $component

Return Value

string

at line 54
static string stripParentheses(string $expression)

No description

Parameters

string $expression

Return Value

string

at line 54
static void extend(callable $compiler)

No description

Parameters

callable $compiler

Return Value

void

at line 54
static array getExtensions()

No description

Return Value

array

at line 54
static void if(string $name, callable $callback)

No description

Parameters

string $name
callable $callback

Return Value

void

at line 54
static bool check(string $name, mixed ...$parameters)

No description

Parameters

string $name
mixed ...$parameters

Return Value

bool

at line 54
static void component(string $alias, string|null $class = 'null', string $prefix = '\'\'')

No description

Parameters

string $alias
string|null $class
string $prefix

Return Value

void

at line 54
static void components(array $components, string $prefix = '\'\'')

No description

Parameters

array $components
string $prefix

Return Value

void

at line 54
static array getClassComponentAliases()

No description

Return Value

array

at line 54
static void anonymousComponentPath(string $path, string|null $prefix = 'null')

No description

Parameters

string $path
string|null $prefix

Return Value

void

at line 54
static void anonymousComponentNamespace(string $directory, string|null $prefix = 'null')

No description

Parameters

string $directory
string|null $prefix

Return Value

void

at line 54
static void componentNamespace(string $namespace, string $prefix)

No description

Parameters

string $namespace
string $prefix

Return Value

void

at line 54
static array getAnonymousComponentPaths()

No description

Return Value

array

at line 54
static array getAnonymousComponentNamespaces()

No description

Return Value

array

at line 54
static array getClassComponentNamespaces()

No description

Return Value

array

at line 54
static void aliasComponent(string $path, string|null $alias = 'null')

No description

Parameters

string $path
string|null $alias

Return Value

void

at line 54
static void include(string $path, string|null $alias = 'null')

No description

Parameters

string $path
string|null $alias

Return Value

void

at line 54
static void aliasInclude(string $path, string|null $alias = 'null')

No description

Parameters

string $path
string|null $alias

Return Value

void

at line 54
static void bindDirective(string $name, callable $handler)

No description

Parameters

string $name
callable $handler

Return Value

void

at line 54
static void directive(string $name, callable $handler, bool $bind = 'false')

No description

Parameters

string $name
callable $handler
bool $bind

Return Value

void

at line 54
static array getCustomDirectives()

No description

Return Value

array

at line 54
static BladeCompiler prepareStringsForCompilationUsing(callable $callback)

No description

Parameters

callable $callback

Return Value

BladeCompiler

at line 54
static void precompiler(callable $precompiler)

No description

Parameters

callable $precompiler

Return Value

void

at line 54
static string usingEchoFormat(string $format, callable $callback)

No description

Parameters

string $format
callable $callback

Return Value

string

at line 54
static void setEchoFormat(string $format)

No description

Parameters

string $format

Return Value

void

at line 54
static void withDoubleEncoding()

No description

Return Value

void

at line 54
static void withoutDoubleEncoding()

No description

Return Value

void

at line 54
static void withoutComponentTags()

No description

Return Value

void

at line 54
static string getCompiledPath(string $path)

No description

Parameters

string $path

Return Value

string

at line 54
static bool isExpired(string $path)

No description

Parameters

string $path

Return Value

bool

at line 54
static string newComponentHash(string $component)

No description

Parameters

string $component

Return Value

string

at line 54
static string compileClassComponentOpening(string $component, string $alias, string $data, string $hash)

No description

Parameters

string $component
string $alias
string $data
string $hash

Return Value

string

at line 54
static string compileEndComponentClass()

No description

Return Value

string

at line 54
static mixed sanitizeComponentAttribute(mixed $value)

No description

Parameters

mixed $value

Return Value

mixed

at line 54
static string compileEndOnce()

No description

Return Value

string

at line 54
static void stringable(callable|string $class, callable|null $handler = 'null')

No description

Parameters

callable|string $class
callable|null $handler

Return Value

void

at line 54
static string compileEchos(string $value)

No description

Parameters

string $value

Return Value

string

at line 54
static mixed applyEchoHandler(mixed $value)

No description

Parameters

mixed $value

Return Value

mixed