Showing 7 of 1,975 result(s)
…rbitrary whitespace between parameter names and their value, provided the value is enclosed within quotes: 1 < x-alert 2 message 3 = "The message contents" /> While the parser supports it, it is still not recommended. It is supported to help tool...
Returns all the document structures. This method automatically performs structural analysis on the document. 1 <?php 2 3 use Illuminate\Support\Collection ; 4 5 public function getAllStructures () : Collection ; Example Use 1 <?php 2 3 use...
Returns the direct document structures. This method automatically performs structural analysis. Only structures that are at the root of the document, without any parent node, will be returned. 1 <?php 2 3 use Illuminate\Support\Collection ; 4 ...
Returns all the document's switch statements. This method automatically performs structural analysis. 1 <?php 2 3 use Illuminate\Support\Collection ; 4 5 public function getAllSwitchStatements () : Collection ; Example Use 1 <?php 2 3 use...
Returns all the direct switch statements. This method automatically performs structural analysis. Only @switch statements that appear at the root of the document, without any parent nodes, will be returned. 1 <?php 2 3 use...
Returns all the document's conditions. This method automatically performs structural analysis. 1 <?php 2 3 use Illuminate\Support\Collection ; 4 5 public function getAllConditions () : Collection ; Example Use 1 <?php 2 3 use...
Returns all the document's root conditions. This method automatically performs structural analysis. Only structures that appear at the root of the document, without any parent node, will be returned. 1 <?php 2 3 use Illuminate\Support\Collection...