1 | <?php |
||
23 | trait AspectsTrait |
||
24 | { |
||
25 | private $aspects = []; |
||
26 | |||
27 | /** |
||
28 | * Add aspect |
||
29 | * @param string $aspect |
||
30 | */ |
||
31 | 44 | public function addAspect($aspect) |
|
41 | |||
42 | /** |
||
43 | * Remove aspect |
||
44 | * @param string $aspect |
||
45 | */ |
||
46 | 44 | public function removeAspect($aspect) |
|
56 | |||
57 | /** |
||
58 | * Check if has aspect |
||
59 | * @param string $aspect |
||
60 | * @return bool |
||
61 | */ |
||
62 | 1 | public function hasAspect($aspect) |
|
66 | |||
67 | } |