1 | <?php |
||
16 | class FakeConstructable |
||
17 | { |
||
18 | /** @var mixed|null */ |
||
19 | private $first; |
||
20 | /** @var mixed|null */ |
||
21 | private $second; |
||
22 | /** @var mixed|null */ |
||
23 | private $third; |
||
24 | |||
25 | /** |
||
26 | * FakeConstructable constructor. |
||
27 | * |
||
28 | * @param mixed|null $first |
||
29 | * @param mixed|null $second |
||
30 | * @param mixed|null $third |
||
31 | */ |
||
32 | public function __construct($first = null, $second = null, $third = null) |
||
38 | |||
39 | /** |
||
40 | * @return mixed|null |
||
41 | */ |
||
42 | public function getFirst() |
||
46 | |||
47 | /** |
||
48 | * @return mixed|null |
||
49 | */ |
||
50 | public function getSecond() |
||
54 | |||
55 | /** |
||
56 | * @return mixed|null |
||
57 | */ |
||
58 | public function getThird() |
||
62 | } |
||
63 |