1: <?php
2:
3: /**
4: * Project sberp
5: *
6: * @file Tree
7: * @author Jaromír Polášek
8: * @version 0.7.1.FORM
9: * Encoding UTF-8
10: */
11:
12: namespace App\Interfaces;
13:
14: /**
15: * Interface pro základní práci se stromy
16: */
17: interface ITree {
18:
19: /** základni metody pro manipulaci se stromy */
20: public function getTree();
21: public function getTreeNodes($id, $depth = null);
22: public function getChildsCount($id);
23: }
24: