Showing 7 of 1,975 result(s)
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...
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...
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...
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 ;
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 ;
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 ;
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 ;