| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 25 | public function setUserEmailController(SetUserEmailRequest $setEmailRequest, SetUserEmailAction $setUserEmailAction) |
||
| 26 | { |
||
| 27 | $setUserEmailAction->run($setEmailRequest->id, $setEmailRequest->email); |
||
| 28 | |||
| 29 | return $this->response->accepted(null, [ |
||
| 30 | 'message' => 'User Email Saved Successfully.', |
||
| 31 | ]); |
||
| 32 | } |
||
| 33 | |||
| 49 |
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.