1: <?php
2:
3: /**
4: * Project sberp
5: *
6: * @file ITreeControlFactory
7: * @author Jaromír Polášek
8: * @version 0.7.1.FORM
9: * Encoding UTF-8
10: */
11:
12: namespace App\Components;
13:
14: /**
15: * Továrna pro komponentu TreeControl
16: */
17: interface ITreeControlFactory {
18:
19: /** @return TreeControl */
20: public function create();
21: }
22: