1 | <?php |
||
13 | abstract class AbstractBasicGenerator implements GeneratorInterface |
||
14 | { |
||
15 | /** @var Indention */ |
||
16 | private $indention; |
||
17 | |||
18 | /** |
||
19 | * @return $this |
||
20 | */ |
||
21 | public function __clone() |
||
25 | |||
26 | /** |
||
27 | * @return string |
||
28 | */ |
||
29 | final public function __toString() |
||
33 | |||
34 | /** |
||
35 | * @return Indention |
||
36 | */ |
||
37 | final public function getIndention() |
||
41 | |||
42 | /** |
||
43 | * @param Indention $indention |
||
44 | * @return $this |
||
45 | */ |
||
46 | public function setIndention(Indention $indention) |
||
52 | } |