Search

Showing 7 of 1,975 result(s)

/tidal-starter-kit/v1/license#content-9-acceptance-not-required-for-having-copies

…ot required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require...

/blade-parser/v1/compiling-workspaces#content-getsourceline

Retrieves the original Blade template line number for the given compiled PHP line. Argument Description $docPath The compiled path. $phpLine The target PHP line. 1 <?php 2   3 public function getSourceLine ( string $docPath, 4 int $phpLine) : int ;

/blade-parser/v1/documents#content-getnodearray

Gets the document nodes as a normal array. Returns a PHP array containing the nodes that represent the parsed template. The nodes returned by this call are the same as those from the getNodes method call. 1 <?php 2   3 public function getNodeArray...

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

The following error families may be reported: Error Family Code Parser P Validation V Compiler C Third-party extensions should not emit error codes in the parser family.

/blade-parser/v1/parser-nodes#content-comment-nodes

The parser will emit Stillat\BladeParser\Nodes\CommentNode instances when it successfully parses a Blade comment. If a comment is not completed, the start of the comment will become part of a LiteralNode instance. The following sample document...

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

…ument with the provided name. Argument Description $tagName The tag name to filter on. 1 <?php 2   3 use Stillat\BladeParser\Nodes\Components\ComponentNode ; 4   5 public function findComponentByTagName ( 6 string $tagName 7 ) : ComponentNode ;...

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

Retrieves all nodes starting on the target line. Only the node's starting position is considered. Argument Description $line The target line. 1 <?php 2   3 use Stillat\BladeParser\Nodes\NodeCollection ; 4   5 public function...