1 | <?php |
||
31 | 1 | final class PhoneUI |
|
32 | { |
||
33 | /** |
||
34 | * Implement nette smart magic |
||
35 | */ |
||
36 | 1 | use Nette\SmartObject; |
|
37 | |||
38 | /** |
||
39 | * @var Phone\Phone |
||
40 | */ |
||
41 | private $phone; |
||
42 | |||
43 | /** |
||
44 | * @param Phone\Phone $phone |
||
45 | */ |
||
46 | public function __construct(Phone\Phone $phone) |
||
50 | |||
51 | /** |
||
52 | * @return Templating\Helpers |
||
53 | */ |
||
54 | public function createTemplateHelpers() |
||
58 | } |
||
59 |