| 1 | <?php |
||
| 16 | class Controller extends PortWebController |
||
| 17 | { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param \App\Containers\Email\UI\API\Requests\ConfirmUserEmailRequest $confirmUserEmailRequest |
||
| 21 | * @param \App\Containers\User\Actions\FindUserByIdAction $findUserByIdAction |
||
| 22 | * @param \App\Containers\Email\Actions\ValidateConfirmationCodeAction $validateConfirmationCodeAction |
||
| 23 | * |
||
| 24 | * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector |
||
| 25 | */ |
||
| 26 | public function confirmUserEmail( |
||
| 41 | |||
| 42 | } |
||
| 43 |
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.