1 | <?php |
||
17 | class Label |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * @var string $singular |
||
22 | */ |
||
23 | public $singular; |
||
24 | |||
25 | /** |
||
26 | * @var string $plural |
||
27 | */ |
||
28 | public $plural; |
||
29 | |||
30 | |||
31 | |||
32 | /** |
||
33 | * Label constructor. |
||
34 | * |
||
35 | * @param string $singular |
||
36 | * @param string $plural |
||
37 | */ |
||
38 | public function __construct($singular, $plural) |
||
43 | |||
44 | |||
45 | |||
46 | /** |
||
47 | * @return string |
||
48 | */ |
||
49 | public function singular() |
||
53 | |||
54 | |||
55 | |||
56 | /** |
||
57 | * @return string |
||
58 | */ |
||
59 | public function plural() |
||
63 | |||
64 | |||
65 | |||
66 | } |
||
67 | // End of file Label.php |
||
68 | // Location: core/entities/Label.php |