rentalhost/laravel-insight

Non-public properties should not require annotation when declared in an accessible scope

rentalhost opened this issue · 0 comments

class Example extends Model
{
    private $property;

    public function test()
    {
        $this->property;
        // Warning: Column was not annotated as @property $property
    }
}