1 | <?php |
||
21 | class PresetMiddlewares implements DataPreProcessorInterface |
||
22 | { |
||
23 | use MagicMethodsTrait; |
||
24 | |||
25 | /** |
||
26 | * @var \Romm\Formz\Middleware\Item\FormInjection\FormInjectionMiddleware |
||
27 | */ |
||
28 | protected $formInjection; |
||
29 | |||
30 | /** |
||
31 | * @var \Romm\Formz\Middleware\Item\FormValidation\FormValidationMiddleware |
||
32 | */ |
||
33 | protected $formValidation; |
||
34 | |||
35 | /** |
||
36 | * @var \Romm\Formz\Middleware\Item\Persistence\PersistenceMiddleware |
||
37 | */ |
||
38 | protected $persistence; |
||
39 | |||
40 | /** |
||
41 | * @todo |
||
42 | * |
||
43 | * @return MiddlewareInterface[] |
||
44 | */ |
||
45 | public function getList() |
||
49 | |||
50 | /** |
||
51 | * @todo |
||
52 | * |
||
53 | * @param DataPreProcessor $processor |
||
54 | */ |
||
55 | public static function dataPreProcessor(DataPreProcessor $processor) |
||
67 | } |
||
68 |