| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 32 | public function loginAdmin(LoginRequest $request, WebAdminLoginAction $action) |
||
| 33 | { |
||
| 34 | $result = $action->run($request->email, $request->password, $request->remember_me); |
||
| 35 | |||
| 36 | if (is_array($result)) { |
||
| 37 | return view('login')->with($result); |
||
| 38 | } |
||
| 39 | |||
| 40 | return view('dashboard'); |
||
| 41 | } |
||
| 42 | |||
| 65 |
Since your code implements the magic getter
_get, this function will be called for any read access on an undefined variable. You can add the@propertyannotation to your class or interface to document the existence of this variable.If the property has read access only, you can use the @property-read annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.