1 | <?php |
||
22 | class LogsTable implements Component |
||
23 | { |
||
24 | /** |
||
25 | * The storage. |
||
26 | * |
||
27 | * @var Storage |
||
28 | */ |
||
29 | private $storage; |
||
30 | |||
31 | /** |
||
32 | * The form type name. |
||
33 | * |
||
34 | * @var string |
||
35 | */ |
||
36 | private $formType; |
||
37 | |||
38 | /** |
||
39 | * Constructor. |
||
40 | * |
||
41 | * @param string $formType The form type name |
||
42 | * @param Storage $storage The storage |
||
43 | */ |
||
44 | public function __construct($formType, Storage $storage) |
||
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | public function load() |
||
57 | } |
||
58 |