Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
7 | class WorkSamplesValidator |
||
8 | { |
||
9 | |||
10 | protected $applicant; |
||
11 | protected $file_type_id; |
||
12 | |||
13 | public function __construct(Applicant $applicant) |
||
14 | { |
||
15 | $this->applicant = $applicant; |
||
16 | $this->file_type_id = FileType::all()->pluck('id'); |
||
17 | |||
18 | } |
||
19 | public function validate(WorkSamplesValidatorValidator $workSamplesValidator) |
||
36 | } |
||
37 | |||
38 | } |