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