1 | <?php |
||
11 | trait FinalPart { |
||
12 | |||
13 | /** @var bool */ |
||
14 | private $final = false; |
||
15 | |||
16 | /** |
||
17 | * Returns whether this is final |
||
18 | * |
||
19 | * @return bool `true` for final and `false` if not |
||
20 | */ |
||
21 | 12 | public function isFinal() { |
|
24 | |||
25 | /** |
||
26 | * Sets this final |
||
27 | * |
||
28 | * @param bool $bool `true` for final and `false` if not |
||
29 | * @return $this |
||
30 | */ |
||
31 | 12 | public function setFinal($bool) { |
|
36 | } |
||
37 |