1 | <?php |
||
11 | trait HasAuthenticationVariablesTrait |
||
12 | { |
||
13 | use AbstractControllerTrait; |
||
14 | |||
15 | protected $authenticationVariable = null; |
||
16 | protected $authenticationValues = null; |
||
17 | |||
18 | public function setAuthenticationVariablesInView() |
||
22 | |||
23 | /** |
||
24 | * @return array |
||
25 | */ |
||
26 | protected function getAuthenticationVariables() |
||
34 | |||
35 | protected function initAuthenticationVariables() |
||
39 | |||
40 | /** |
||
41 | * @return array |
||
42 | */ |
||
43 | protected function generateAuthenticationVariables() |
||
51 | |||
52 | /** |
||
53 | * @return string|null |
||
54 | */ |
||
55 | protected function getAuthenticationVarRedirect() |
||
66 | |||
67 | |||
68 | /** |
||
69 | * @return array |
||
70 | */ |
||
71 | protected function getAuthenticationValues() |
||
76 | |||
77 | protected function checkInitAuthenticationValues() |
||
83 | |||
84 | /** |
||
85 | * @param $key |
||
86 | * @param null $default |
||
87 | * @return mixed |
||
88 | */ |
||
89 | protected function getAuthenticationValue($key, $default = null) |
||
94 | |||
95 | /** |
||
96 | * @return array |
||
97 | */ |
||
98 | protected function initAuthenticationValues() |
||
102 | |||
103 | /** |
||
104 | * @return array |
||
105 | */ |
||
106 | protected function generateAuthenticationValues() |
||
115 | |||
116 | /** |
||
117 | * @param $value |
||
118 | * @return mixed |
||
119 | */ |
||
120 | protected function decodeVariables($value) |
||
124 | |||
125 | /** |
||
126 | * @param $value |
||
127 | * @return mixed |
||
128 | */ |
||
129 | protected function encodeVariable($value) |
||
133 | |||
134 | /** |
||
135 | * @param $data |
||
136 | * @return bool |
||
137 | */ |
||
138 | protected function isEncodedVariable($data) |
||
145 | } |
||
146 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.