PHP Class Devise\Pages\Interpreter\BladeEngineCompiler

..
Inheritance: implements Illuminate\View\Compilers\CompilerInterface
Datei anzeigen Open project: devisephp/cms

Public Methods

Method Description
__call ( [type] $method, [type] $arguments ) : [type] Any calls made we proxy to the underlying compiler
__construct ( Illuminate\View\Compilers\CompilerInterface $compiler, DeviseCompiler $DeviseCompiler, DeviseParser $DeviseParser ) Construct a new blade compiler
compile ( string $path = null ) : void Compile the view at the given path.
extend ( Closure $closure ) : [type] [extend description]
getCompiledPath ( string $path ) : string Get the path to the compiled version of a view.
isExpired ( string $path ) : boolean Determine if the given view is expired.

Method Details

__call() public method

Any calls made we proxy to the underlying compiler
public __call ( [type] $method, [type] $arguments ) : [type]
$method [type]
$arguments [type]
return [type]

__construct() public method

Construct a new blade compiler
public __construct ( Illuminate\View\Compilers\CompilerInterface $compiler, DeviseCompiler $DeviseCompiler, DeviseParser $DeviseParser )
$compiler Illuminate\View\Compilers\CompilerInterface
$DeviseCompiler DeviseCompiler
$DeviseParser DeviseParser

compile() public method

Compile the view at the given path.
public compile ( string $path = null ) : void
$path string
return void

extend() public method

[extend description]
public extend ( Closure $closure ) : [type]
$closure Closure [description]
return [type]

getCompiledPath() public method

Get the path to the compiled version of a view.
public getCompiledPath ( string $path ) : string
$path string
return string

isExpired() public method

Determine if the given view is expired.
public isExpired ( string $path ) : boolean
$path string
return boolean