Showing 10 of 1,322 results.

findDirectivesByName | Workspaces

Returns all directives with the provided name in the workspace. Argument Description $name The directive name to search 1 <?php 2 3 use Stillat \ BladeParser \ Nodes \ NodeCollection ; 4 5 public function findDirectivesByName ( 6 string $ name 7 )...

hasDirective | Workspaces

Tests if the workspace contains a directive with the provided name. Argument Description $name The directive name. 1 <?php 2 3 public function hasDirective ( 4 string $ name 5 ) : bool ;

14. Revised Versions of this License. | License

The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or...

Laravel 5: Creating Combinations of Elements With crossJoin

…cept any number of arguments; these will be passed to the inner function via the $arrays parameter. You can learn more about this syntax by visiting https://php.net/manual/en/functions.arguments.php .Admittedly, the description of this method can...

setDirectiveNames | The Document Parser

Sets the custom directive names. Argument Description $names The directive names. 1 <?php 2 3 use Stillat \ BladeParser \ Parser \ DocumentParser ; 4 5 public function setDirectiveNames ( 6 array $ names 7 ) : DocumentParser ;

registerCustomDirective | The Document Parser

Registers a single custom directive name. Argument Description $name The directive name. 1 <?php 2 3 public function registerCustomDirective ( 4 string $ name 5 ) : void ;

Laravel Security Helper Function: e for HTML Entities

…t ( " hello everyone " ) ; < / script > If the forum software did not sanitize user output, perfectly valid JavaScript code would be sent to the browser. Since browsers are overly happy to execute any JavaScript included in the document, any...