Showing 10 of 1,214 results.

getNodeValidators | Validating Blade

Returns a collection containing only the registered node validator instances. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getNodeValidators ( ) : Collection ;

getDocumentValidators | Validating Blade

Returns a collection containing only the registered document validator instances. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getDocumentValidators ( ) : Collection ;

hasValidatorClass | Validating Blade

Tests if the BladeValidator instance contains any validator instance with the provided class name. Argument Description $validatorClass The class name to check. 1 <?php 2 3 public function hasValidatorClass ( 4 string $ validatorClass 5 ) : bool ;

validateNodes | Validating Blade

Runs all registered node validators against the provided node list. Argument Description $nodes The nodes to validate. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function validateNodes ( 6 array $ nodes 7 ) : Collection ;

getValidationErrors | Validating Workspaces

Returns all validation errors present in the workspace. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getValidationErrors ( ) : Collection ;

getErrors | Validating Workspaces

Retrieves a collection of BladeError instances for the workspace. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getErrors ( ) : Collection ;

Configuring the Compiler | Blade Compiler

The provided compiler implementation works to be independent of the core compiler in many ways. As such, it needs to be taught about components such as namespaces, aliases, custom conditions or directives, etc.