| 1 | <?php |
||
| 11 | class Host extends Model |
||
| 12 | { |
||
| 13 | public $guarded = []; |
||
| 14 | |||
| 15 | public function checks(): HasMany |
||
| 19 | |||
| 20 | public function getEnabledChecksAttribute(): Collection |
||
| 24 | |||
| 25 | public function isHealthy(): bool |
||
| 29 | |||
| 30 | public function isUnhealthy(): bool |
||
| 34 | |||
| 35 | public function hasWarning(): bool |
||
| 39 | |||
| 40 | public function getStatusAttribute(): string |
||
| 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.