| 1 | <?php |
||
| 14 | class Group extends Owner |
||
| 15 | { |
||
| 16 | protected $table = 'owners'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Finds all groups. |
||
| 20 | * |
||
| 21 | * @param \Illuminate\Database\Eloquent\Builder $query |
||
| 22 | * |
||
| 23 | * @return \Illuminate\Database\Eloquent\Builder |
||
| 24 | */ |
||
| 25 | public function scopeIsGroup($query) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Returns group route. |
||
| 32 | * |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | public function getUrlAttribute() |
||
| 39 | } |
||
| 40 |
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.