PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
kris
/
laravel-form-builder
/
src
/
Kris
/
LaravelFormBuilder
/
Events
<?php namespace Kris\LaravelFormBuilder\Events; use Illuminate\Contracts\Validation\Validator; use Kris\LaravelFormBuilder\Form; class AfterFormValidation { /** * The form instance. * * @var Form */ protected $form; /** * The validator instance. * * @var Validator */ protected $validator; /** * Indicates if the form is valid. * * @var bool */ protected $valid; /** * Create a new after form validation instance. * * @param Form $form * @param Validator $validator * @param bool $valid * @return void */ public function __construct(Form $form, Validator $validator, $valid) { $this->form = $form; $this->validator = $validator; $this->valid = $valid; } /** * Return the event's form. * * @return Form */ public function getForm() { return $this->form; } /** * Return the event's validator. * * @return Validator */ public function getValidator() { return $this->validator; } /** * Return wether the form is valid. * * @return bool */ public function isValid() { return $this->valid; } }
[+]
..
[-] AfterFormCreation.php
[edit]
[-] BeforeFormValidation.php
[edit]
[-] AfterCollectingFieldRules.php
[edit]
[-] AfterFormValidation.php
[edit]
[-] AfterFieldCreation.php
[edit]