Showing 10 of 2,044 results.

withCoreValidators | Validating Blade

Adds all the core validator instances to the current BladeValidator instance. 1 <?php 2 3 use Stillat \ BladeParser \ Validation \ BladeValidator ; 4 5 public function withCoreValidators ( ) : BladeValidator ;

getValidatorCount | Validating Blade

Returns the total number of validator instances registered with BladeValidator instance. 1 <?php 2 3 public function getValidatorCount ( ) : int ;

hasValidatorInstance | Validating Blade

Tests if the BladeValidator instance contains the provided validator. Argument Description $validator The validator to check. 1 <?php 2 3 use Stillat \ BladeParser \ Validation \ AbstractNodeValidator ; 4 5 public function hasValidatorInstance ( 6...

hasDocumentValidatorInstance | Validating Blade

Tests if the BladeValidator instance contains the provided validator. Argument Description $validator The validator to check. 1 <?php 2 3 use Stillat \ BladeParser \ Validation \ AbstractDocumentValidator ; 4 5 public function...

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 ;

addValidators | Validating Blade

Adds the validators to validator instance. Argument Description $validators The validators. 1 <?php 2 3 use Stillat \ BladeParser \ Validation \ BladeValidator ; 4 5 public function addValidators ( 6 array $ validators 7 ) : BladeValidator ;

addDocumentValidator | Validating Blade

Registers a document validator with the BladeValidator instance. Argument Description $validator The validator instance. 1 <?php 2 3 use Stillat \ BladeParser \ Validation \ AbstractDocumentValidator ; 4 use Stillat \ BladeParser \ Validation \...

removeValidator | Validating Blade

Removes a validator instance with the provided validator class name. Argument Description $validatorClass The validator class name. 1 <?php 2 3 use Stillat \ BladeParser \ Validation \ BladeValidator ; 4 5 public function removeValidator ( 6...

Favicons and Web Manifest

…dating the " Globals > Site Settings > Favicon " field within the Control Panel. Tidal makes use of the Site Essentials for Statami c addon to generate and manage your site's favicons, as well as the site's web manifest file. For more information...

Mutable Function | Laravel Array Helper Function: array_set

This function affects the original $array . Which would produce a familiar looking array: 1 array( 1 ) { 2 [ " person " ] array(2) { 3 [ " first_name " ] " Jane " 4 [ " last_name " ] " Doe " 5 } 6 } Overwriting the value of first_name is also easy...