本文整理汇总了PHP中Illuminate\Routing\Route::getValidators方法的典型用法代码示例。如果您正苦于以下问题:PHP Route::getValidators方法的具体用法?PHP Route::getValidators怎么用?PHP Route::getValidators使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Illuminate\Routing\Route
的用法示例。
在下文中一共展示了Route::getValidators方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getValidators
/**
* Get the route validators for the instance.
*
* @return array
*/
public static function getValidators()
{
$validators = parent::getValidators();
foreach ($validators as $key => $validator) {
if ($validator instanceof UriValidator) {
break;
}
}
$validators[] = new AlexaValidator();
return $validators;
}
示例2: handle
/**
* Handle the command.
*/
public function handle()
{
Route::$validators = array_filter(array_merge(Route::getValidators(), [new CaseInsensitiveUriValidator()]), function ($validator) {
return get_class($validator) != UriValidator::class;
});
}
示例3: boot
/**
* 주요 역활은 ModuleValidator 의 boot 를 실행.
*
* @return void
*/
public function boot()
{
$routeValidator = Route::getValidators();
$routeValidator['module']->boot(app('xe.router'), app('xe.menu'), app('xe.theme'), app('xe.site'));
}