Search

Showing 7 of 1,975 result(s)

/blade-parser/v1/workspaces#content-getdirectives

Returns all directives within the workspace. Returns all directives from a source document. Some directive pairs, such as the @php / @endphp and @verbatim / @endverbatim pairs will not result in an instance of DirectiveNode , as they are handled...

/blade-parser/v1/workspaces#content-getcomponents

Returns all component tags within workspace document. This method will return all component tags within a document, including closing tags and self-closing tags. 1 <?php 2   3 use Stillat\BladeParser\Nodes\NodeCollection ; 4   5 public function...

/blade-parser/v1/workspaces#content-findcomponentsbytagname

Finds all components with the provided tag name. This method will return all component tags that match the provided name, including closing tags. Argument Description $tagName The tag name to filter on. 1 <?php 2   3 use...

/blade-parser/v1/workspaces#content-getallstructures

Returns all the workspace structures. This method automatically performs structural analysis on a document. 1 <?php 2   3 use Illuminate\Support\Collection ; 4   5 public function getAllStructures () : Collection ;

/blade-parser/v1/workspaces#content-getallswitchstatements

Returns all the workspaces' switch statements. This method automatically performs structural analysis. 1 <?php 2   3 use Illuminate\Support\Collection ; 4   5 public function getAllSwitchStatements () : Collection ;

/blade-parser/v1/workspaces#content-getallconditions

Returns all the workspace conditions. This method automatically performs structural analysis. 1 <?php 2   3 use Illuminate\Support\Collection ; 4   5 public function getAllConditions () : Collection ;

/blade-parser/v1/workspaces#content-getallforelse

Returns all the workspace for-else blocks. This method automatically performs structural analysis. 1 <?php 2   3 use Illuminate\Support\Collection ; 4   5 public function getAllForElse () : Collection ;