1 | <?php namespace Distilleries\Expendable\Http\Forms\Export; |
||
6 | class ExportForm extends FormValidator { |
||
7 | |||
8 | public static $rules = [ |
||
9 | 'range' => 'required', |
||
10 | 'type' => 'required' |
||
11 | ]; |
||
12 | |||
13 | public static $rules_update = null; |
||
14 | |||
15 | // ------------------------------------------------------------------------------------------------ |
||
16 | |||
17 | public function buildForm() |
||
34 | } |