Global str_is Helper Function | Laravel String Pattern Matching - Laravel 5.5 String Helper Method: "is"
The str_is function is a shortcut to calling Str::is . This function is declared in the global namespace.
Showing 10 of 2,055 results.
The str_is function is a shortcut to calling Str::is . This function is declared in the global namespace.
The signature of the forget method is: 1 public static function forget ( 2 & $ array , 3 $ keys 4 ) ;
The array_forget function is a shortcut to calling Arr::forget . This function is declared in the global namespace.
The starts_with function is a shortcut to calling Str::startsWith . This function is declared in the global namespace.
Returns a collection of node validation results. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getResults ( ) : Collection ;
Returns a collection of document validation results. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getDocumentResults ( ) : Collection ;
Returns a collection of all registered validator instances. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getValidators ( ) : Collection ;
Returns a collection containing only the registered node validator instances. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getNodeValidators ( ) : Collection ;
Returns a collection containing only the registered document validator instances. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getDocumentValidators ( ) : Collection ;
Runs all registered document validators against the provided document. This method will not automatically run registered node validators against the document's nodes. Argument Description $document The document to validate. 1 <?php 2 3 use...