PHP 클래스 Learner\Services\Forms\AbstractFormService

파일 보기 프로젝트 열기: RryLee/learner.video

보호된 프로퍼티들

프로퍼티 타입 설명
$attributes array The Model's attributes aliases.
$inputData array The input data of the current request.
$messages array Array of custom validation messages.
$rules array The validation rules to validate the input data against.
$validator Illuminate\Validation\Validator The validator instance.

공개 메소드들

메소드 설명
__construct ( ) AbstractForm constructor.
getAttributes ( ) : array Get the custom attributes aliases.
getErrors ( ) : Illuminate\Support\MessageBag Get the validation errors off of the Validator instance.
getInputData ( ) : array Get the prepared input data.
isValid ( ) : boolean Check whether the input data is valid.

보호된 메소드들

메소드 설명
getMessages ( ) : array Get the custom validation messages.
getRules ( ) : array Get the prepared validation rules.

메소드 상세

__construct() 공개 메소드

AbstractForm constructor.
public __construct ( )

getAttributes() 공개 메소드

Get the custom attributes aliases.
public getAttributes ( ) : array
리턴 array

getErrors() 공개 메소드

Get the validation errors off of the Validator instance.
public getErrors ( ) : Illuminate\Support\MessageBag
리턴 Illuminate\Support\MessageBag

getInputData() 공개 메소드

Get the prepared input data.
public getInputData ( ) : array
리턴 array

getMessages() 보호된 메소드

Get the custom validation messages.
protected getMessages ( ) : array
리턴 array

getRules() 보호된 메소드

Get the prepared validation rules.
protected getRules ( ) : array
리턴 array

isValid() 공개 메소드

Check whether the input data is valid.
public isValid ( ) : boolean
리턴 boolean

프로퍼티 상세

$attributes 보호되어 있는 프로퍼티

The Model's attributes aliases.
protected array $attributes
리턴 array

$inputData 보호되어 있는 프로퍼티

The input data of the current request.
protected array $inputData
리턴 array

$messages 보호되어 있는 프로퍼티

Array of custom validation messages.
protected array $messages
리턴 array

$rules 보호되어 있는 프로퍼티

The validation rules to validate the input data against.
protected array $rules
리턴 array

$validator 보호되어 있는 프로퍼티

The validator instance.
protected Validator,Illuminate\Validation $validator
리턴 Illuminate\Validation\Validator