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