1 | <?php |
||
7 | final class Company |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $company; |
||
13 | |||
14 | /** |
||
15 | ** @param string $company |
||
16 | */ |
||
17 | public function __construct($company) |
||
25 | |||
26 | /** |
||
27 | * @param Company $other |
||
28 | * @return bool |
||
29 | */ |
||
30 | public function equals(Company $other) |
||
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | public function getCompany() |
||
42 | |||
43 | public function __toString() |
||
47 | } |
||
48 |