Showing 7 of 2,041 result(s)
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 ;
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...
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.
…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...
1 <?php 2 3 public function getParsedContent () : string ;
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 ;
Tests if the document contains any Blade directives. 1 <?php 2 3 public function hasAnyDirectives () : bool ;