1 | <?php |
||
7 | abstract class AbstractAirline extends Template implements AirlineInterface |
||
8 | { |
||
9 | |||
10 | use ValidatorTrait; |
||
11 | |||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $locale; |
||
16 | |||
17 | /** |
||
18 | * @var null|string |
||
19 | */ |
||
20 | protected $themeColor; |
||
21 | |||
22 | /** |
||
23 | * AbstractAirline constructor. |
||
24 | * |
||
25 | * @param string $locale |
||
26 | */ |
||
27 | public function __construct(string $locale) |
||
35 | |||
36 | /** |
||
37 | * @param string $themeColor |
||
38 | * @return AbstractAirline |
||
39 | */ |
||
40 | public function setThemeColor(string $themeColor): AbstractAirline |
||
47 | } |
||
48 |