1 | <?php |
||
22 | class FormsTable implements Component |
||
23 | { |
||
24 | /** |
||
25 | * The storage. |
||
26 | * |
||
27 | * @var Storage |
||
28 | */ |
||
29 | private $storage; |
||
30 | |||
31 | /** |
||
32 | * Constructor. |
||
33 | * |
||
34 | * @param Storage $storage The storage |
||
35 | */ |
||
36 | public function __construct(Storage $storage) |
||
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function load() |
||
48 | } |
||
49 |