| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 46 | public function store(SubmitUrlRequest $request, Link $link) |
||
| 47 | { |
||
| 48 | // Todo checking for failure here. |
||
| 49 | |||
| 50 | $link = $link->generate($request->url, auth()->user()); |
||
| 51 | |||
| 52 | $html_link = '<a href="/'.$link->hash.'">Try it now</a>'; |
||
| 53 | |||
| 54 | return redirect()->route('url_create')->with('message', 'Url added created! '.$html_link); |
||
| 55 | } |
||
| 56 | } |
||
| 57 |
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.