1 | <?php |
||
15 | trait Linkable |
||
16 | { |
||
17 | private $_link = []; |
||
18 | |||
19 | public function __clone () |
||
23 | |||
24 | 82 | public function haveLink (Election $election) : bool |
|
28 | |||
29 | 90 | public function countLinks () : int |
|
33 | |||
34 | 91 | public function getLinks () : ?array |
|
38 | |||
39 | // Internal |
||
40 | # Dot not Overloading ! Do not Use ! |
||
41 | |||
42 | 95 | public function registerLink (Election $election) : void |
|
49 | |||
50 | 9 | public function destroyLink (Election $election) : bool |
|
61 | |||
62 | 1 | protected function destroyAllLink () : void |
|
66 | } |
||
67 |