rentalhost / laravel-insight

IDEA plugin to works with Laravel Framework.
MIT License
27 stars 6 forks source link

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

Open rentalhost opened 6 years ago

rentalhost commented 6 years ago
class Example extends Model
{
    private $property;

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