EncoderForm.php
1 month ago
Encoding.php
2 months ago
Filters.php
2 months ago
Validate.php
5 months ago
Validate.php
28 lines
| 1 | <?php |
| 2 | |
| 3 | namespace OnlineOptimisation\EmailEncoderBundle\Validate; |
| 4 | |
| 5 | use OnlineOptimisation\EmailEncoderBundle\Traits\PluginHelper; |
| 6 | |
| 7 | class Validate |
| 8 | { |
| 9 | use PluginHelper; |
| 10 | |
| 11 | public Encoding $encoding; |
| 12 | public Filters $filters; |
| 13 | public EncoderForm $form; |
| 14 | |
| 15 | |
| 16 | public function boot(): void |
| 17 | { |
| 18 | $this->encoding = new Encoding(); |
| 19 | $this->filters = new Filters(); |
| 20 | $this->form = new EncoderForm(); |
| 21 | |
| 22 | $this->encoding->boot(); |
| 23 | $this->filters->boot(); |
| 24 | $this->form->boot(); |
| 25 | } |
| 26 | |
| 27 | } |
| 28 |