Signature | Laravel String Pattern Matching - Laravel 5.5 String Helper Method: "is"
The signature of the is method is: 1 public static function is ( 2 $ pattern , 3 $ value 4 ) ;
Showing 10 of 2,044 results.
The signature of the is method is: 1 public static function is ( 2 $ pattern , 3 $ value 4 ) ;
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 ;