1 | <?php /** MicroUser */ |
||
21 | class User implements IUser |
||
22 | { |
||
23 | protected $session; |
||
24 | |||
25 | /** |
||
26 | * @access public |
||
27 | * @param ISession $session |
||
28 | * @result void |
||
29 | */ |
||
30 | public function __construct(ISession $session) |
||
34 | |||
35 | /** |
||
36 | * @param string $permission |
||
37 | * @param array $data |
||
38 | * @return bool |
||
39 | * @throws Exception |
||
40 | */ |
||
41 | public function check($permission, array $data = []) |
||
49 | |||
50 | /** |
||
51 | * @return bool |
||
52 | * @throws Exception |
||
53 | */ |
||
54 | public function isGuest() |
||
58 | |||
59 | /** |
||
60 | * @return bool|int |
||
61 | * @throws Exception |
||
62 | */ |
||
63 | public function getID() |
||
67 | |||
68 | /** |
||
69 | * @param int|string $userId |
||
70 | * @throws Exception |
||
71 | */ |
||
72 | public function login($userId) |
||
76 | |||
77 | /** |
||
78 | * @param mixed $id |
||
79 | * @throws Exception |
||
80 | */ |
||
81 | public function setID($id) |
||
85 | |||
86 | /** |
||
87 | * @throws Exception |
||
88 | */ |
||
89 | public function logout() |
||
96 | |||
97 | /** |
||
98 | * @return string |
||
99 | * @throws Exception |
||
100 | */ |
||
101 | public function getCaptcha() |
||
105 | |||
106 | /** |
||
107 | * @param string $code |
||
108 | * @throws Exception |
||
109 | */ |
||
110 | public function setCaptcha($code) |
||
114 | |||
115 | /** |
||
116 | * @param string $code |
||
117 | * @return bool|null |
||
118 | * @throws Exception |
||
119 | */ |
||
120 | public function checkCaptcha($code) |
||
128 | } |
||
129 |
This check looks at variables that are passed out again to other methods.
If the outgoing method call has stricter type requirements than the method itself, an issue is raised.
An additional type check may prevent trouble.