1 | <?php |
||
10 | class Film |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $title; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $director; |
||
21 | |||
22 | /** |
||
23 | * Film constructor. |
||
24 | * @param string $title |
||
25 | * @param string $director |
||
26 | */ |
||
27 | 3 | public function __construct(string $title, string $director) |
|
32 | |||
33 | /** |
||
34 | * @return string |
||
35 | */ |
||
36 | 2 | public function getTitle(): string |
|
40 | |||
41 | /** |
||
42 | * @return string |
||
43 | */ |
||
44 | public function getDirector(): string |
||
48 | } |
||
49 |