我设法创建了以下自定义验证规则:http://www.sitepoint.com/data-validation-laravel-right-way-custom-validators/
我唯一的问题是在laravel 5中有新的文件结构。它应该是:
in <?php namespace App\Providers; ValidationExtensionServiceProvider.php
in <?php namespace App\Services; ValidatorExtended.php
但laravel无法找到我的ValidatorExtended.php,如果它不在App \ Providers中。错误:
FatalErrorException in ValidationExtensionServiceProvider.php line 11: Class 'App\Providers\ValidatorExtended' not found
如何告诉laravel,查看App \ Services,而不是App \ Providers?
ValidatorExtended.php:
<?php namespace App\Services;
use Illuminate\Validation\Validator as IlluminateValidator;
class ValidatorExtended extends IlluminateValidator {
private $_custom_messages = array(
....
);
public function __construct( $translator, $data, $rules, $messages = array(), $customAttributes = array() )
{
parent::__construct( $translator, $data, $rules, $messages, $customAttributes);
$this->_set_custom_stuff();
}
....
}
ValidationExtensionServiceProvider.php:
<?php namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class ValidationExtensionServiceProvider extends ServiceProvider {
public function register() {}
public function boot() {
$this->app->validator->resolver( function( $translator, $data, $rules, $messages = array(), $customAttributes = array() ) {
return new ValidatorExtended( $translator, $data, $rules, $messages, $customAttributes );
}
}
}
答案 0 :(得分:2)
您需要指定ValidatorExtended
访问者的名称空间:
<?php namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class ValidationExtensionServiceProvider extends ServiceProvider {
public function register() {}
public function boot() {
$this->app->validator->resolver( function( $translator, $data, $rules, $messages = array(), $customAttributes = array() ) {
return new App\Services\ValidatorExtended( $translator, $data, $rules, $messages, $customAttributes );
}
}
}
或在文件顶部添加一个use语句:
<?php namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use App\Services\ValidatorExtended;
class ValidationExtensionServiceProvider extends ServiceProvider {
public function register() {}
public function boot() {
$this->app->validator->resolver( function( $translator, $data, $rules, $messages = array(), $customAttributes = array() ) {
return new ValidatorExtended( $translator, $data, $rules, $messages, $customAttributes );
}
}
}