Search

Showing 7 of 1,975 result(s)

/social-media-image-kit/v1/license#content-17-interpretation-of-sections-15-and-16

If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability...

/tidal-starter-kit/v1/license#content-17-interpretation-of-sections-15-and-16

If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability...

/blade-parser/v1/parser-errors#content-error-types

There are a variety of specific error types, each encoding a unique scenario: Error Type Code Unknown 000 Unexpected End of Input 001 Unexpected Echo 002 Unexpected Raw Echo 003 Unexpected Triple Echo 004 Unexpected Comment 005 Unexpected...

/blade-parser/v1/parser-nodes

The document parser returns a list of nodes as a result of parsing. There are many different types available, depending on the input template. The most basic node type is the LiteralNode , representing the template's non-Blade parts. If an input...

/blade-parser/v1/querying-document-nodes#content-finddirectivesbyname

Returns all directives with the provided name in the source document. 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...

/blade-parser/v1/querying-document-nodes#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/querying-document-nodes#content-allnotoftype

…o search. 1 <?php 2   3 use Stillat\BladeParser\Nodes\NodeCollection ; 4   5 public function allNotOfType ( 6 string $type 7 ) : NodeCollection ; Example Use 1 <?php 2   3 use Stillat\BladeParser\Document\Document ; 4 use...