Showing 7 of 1,975 result(s)
The array_where function is a shortcut to calling Arr::where . This function is declared in the global namespace.
The Queue facade defines one extra method to help make testing queue functionality within your applications easier.
The httpEquiv method queues a <meta http-equiv="..." content="..."> tag. 1 <?php 2 3 use Stillat\StatamicSiteEssentials\Support\Facades\Metadata ; 4 5 Metadata :: general () -> httpEquiv ( 'refresh' , '30' );
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 ;
Returns the total number of validator instances registered with BladeValidator instance. 1 <?php 2 3 public function getValidatorCount () : int ;
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...
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...