1 | <?php |
||
5 | trait FinalTrait |
||
6 | { |
||
7 | /** |
||
8 | * @type bool |
||
9 | */ |
||
10 | protected $isFinal = false; |
||
11 | |||
12 | /** |
||
13 | * Checks if a class is final. |
||
14 | * |
||
15 | * @return bool |
||
16 | */ |
||
17 | 57 | public function isFinal() |
|
21 | |||
22 | /** |
||
23 | * Sets if a class is final. |
||
24 | * |
||
25 | * @param bool $isFinal |
||
26 | */ |
||
27 | 1062 | public function setFinal($isFinal) |
|
33 | } |
||
34 |