romanzipp / Laravel-Model-Doc

📝 Generate PHPDoc comments for Laravel Models
MIT License
22 stars 6 forks source link

Add custom mixin tags #17

Closed romanzipp closed 1 year ago

romanzipp commented 1 year ago

Resolves #12

New config value

    'custom_tags' => [
        // Add a "@mixin" tag value to support static method linting for IDEs.
        'mixins' => [
            // \Illuminate\Database\Eloquent\Model::class,
        ],
    ],