Search

Showing 7 of 1,975 result(s)

/blog/2016/11/20/laravel-array-helper-function-array_where#content-arraywherearray-callable-callback

The array_where function is a shortcut to calling Arr::where . This function is declared in the global namespace.

/blog/2018/04/21/laravel-5-facades#content-additional-queue-methods

The Queue facade defines one extra method to help make testing queue functionality within your applications easier.

/site-essentials-for-statamic/v1/general-metadata#content-http-equivalent

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' );

/blade-parser/v1/validation#content-withcorevalidators

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 ;

/blade-parser/v1/validation#content-getvalidatorcount

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

/blade-parser/v1/validation#content-hasvalidatorinstance

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...

/blade-parser/v1/validation#content-hasdocumentvalidatorinstance

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...