1 | <?php |
||
15 | class SampleEntity |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * @var bool |
||
20 | */ |
||
21 | public $fooCalled = false; |
||
22 | |||
23 | public $constructArgument = "foo"; |
||
24 | |||
25 | public function __construct(string $foo = "foo") |
||
29 | |||
30 | public static function someStaticFactory(string $foo = "foo"): SampleEntity |
||
34 | |||
35 | public function doFoo() |
||
39 | |||
40 | public function getId() |
||
44 | |||
45 | } |
||
46 |