Search

Showing 7 of 2,041 result(s)

/blade-parser/v1/compiling-workspaces#content-available-methods

Compiles all discovered Blade templates within the workspace. Argument Description $outputDirectory Where to store compiled files. 1 <?php 2   3 public function compile ( 4 string $outputDirectory 5 ) : void ;

/blade-parser/v1/documents#content-getnodearray

Gets the document nodes as a normal array. Returns a PHP array containing the nodes that represent the parsed template. The nodes returned by this call are the same as those from the getNodes method call. 1 <?php 2   3 public function getNodeArray...

/blade-parser/v1/parser-errors#content-error-families

The following error families may be reported: Error Family Code Parser P Validation V Compiler C Third-party extensions should not emit error codes in the parser family.

/blade-parser/v1/parser-nodes#content-directive-nodes

…ive. If the parser can parse arguments following the directive's name, the argument's details will also be within the directive node. Arguments begin with an opening ( and are closed with a ) . They may have any number of parenthesis within them...

/blade-parser/v1/parsing#content-available-methods

1 <?php 2   3 public function getParsedContent () : string ;

/blade-parser/v1/parsing#content-parse

Parses the input document and returns an array of nodes. Argument Description $document The input document. 1 <?php 2   3 public function parse ( 4 string $document 5 ) : array ;

/blade-parser/v1/querying-document-nodes#content-hasanydirectives

Tests if the document contains any Blade directives. 1 <?php 2   3 public function hasAnyDirectives () : bool ;