1 | <?php |
||
5 | class Theme { |
||
6 | |||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | private $name; |
||
11 | |||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $directory; |
||
16 | |||
17 | /** |
||
18 | * Theme constructor. |
||
19 | * |
||
20 | * @param string $name |
||
21 | * @param string $directory |
||
22 | */ |
||
23 | public function __construct($name = '', $directory = '') { |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getName() { |
||
34 | |||
35 | /** |
||
36 | * @param $name |
||
37 | */ |
||
38 | public function setName($name) { |
||
41 | |||
42 | /** |
||
43 | * @return string |
||
44 | */ |
||
45 | public function getDirectory() { |
||
48 | |||
49 | /** |
||
50 | * @param string $directory |
||
51 | */ |
||
52 | public function setDirectory($directory) { |
||
55 | } |
||
56 |