1 | <?php |
||
15 | class Controller extends PortWebController |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * @param \App\Containers\Email\UI\API\Requests\ConfirmUserEmailRequest $request |
||
20 | * @param \App\Containers\Email\Actions\ValidateUserEmailByConfirmationCodeAction $action |
||
21 | * |
||
22 | * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector |
||
23 | */ |
||
24 | public function confirmUserEmail( |
||
34 | |||
35 | } |
||
36 |
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@property
annotation 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.