1 | <?php |
||
5 | class FizBuz |
||
6 | { |
||
7 | /** @var mixed|null */ |
||
8 | private $fiz; |
||
9 | |||
10 | /** @var mixed|null */ |
||
11 | private $buz; |
||
12 | |||
13 | /** |
||
14 | * FizBuz constructor. |
||
15 | * @param mixed|null $fiz |
||
16 | * @param mixed|null $buz |
||
17 | */ |
||
18 | public function __construct($fiz = null, $buz = null) |
||
23 | |||
24 | /** |
||
25 | * @return mixed|null |
||
26 | */ |
||
27 | public function getFiz() |
||
31 | |||
32 | /** |
||
33 | * @param mixed|null $fiz |
||
34 | * @return void |
||
35 | */ |
||
36 | public function setFiz($fiz) |
||
40 | |||
41 | /** |
||
42 | * @return mixed|null |
||
43 | */ |
||
44 | public function getBuz() |
||
48 | |||
49 | /** |
||
50 | * @param mixed|null $buz |
||
51 | * @return void |
||
52 | */ |
||
53 | public function setBuz($buz) |
||
57 | } |
||
58 |