Current File : /var/www/vinorea/modules/psassistant/vendor/prestashop/php-dev-tools/phpstan/stubs/Tab.stub
<?php

class Tab extends TabCore
{
}

class ObjectModel
{
}

/**
 * Wrong properties:
 * @property string|array<string> $name 
 * @property bool $active 
 */
class TabCore extends ObjectModel
{
    /** @var string|array<string> Displayed name */
    public $name;

    /** @var bool active */
    public $active = true;
}