Changed validateFile() method access from protected to public, fixed hasErrors check

This commit is contained in:
Gudz Taras
2013-11-05 06:15:42 +04:00
parent 3ef20e591d
commit 11c78cb4fb
2 changed files with 3 additions and 3 deletions

View File

@@ -168,7 +168,7 @@ class FileValidator extends Validator
* @param string $attribute the attribute being validated
* @param UploadedFile $file uploaded file passed to check against a set of rules
*/
protected function validateFile($object, $attribute, $file)
public function validateFile($object, $attribute, $file)
{
switch ($file->error) {
case UPLOAD_ERR_OK:

View File

@@ -145,11 +145,11 @@ class ImageValidator extends FileValidator
* @param string $attribute the attribute being validated
* @param UploadedFile $file uploaded file passed to check against a set of rules
*/
protected function validateFile($object, $attribute, $file)
public function validateFile($object, $attribute, $file)
{
parent::validateFile($object, $attribute, $file);
if (false === $object->hasErrors($attribute)) {
if (!$object->hasErrors($attribute)) {
$this->validateImage($object, $attribute, $file);
}
}