| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | class CustomerWithAlias extends ActiveRecord |
||
| 21 | { |
||
| 22 | public const STATUS_ACTIVE = 1; |
||
| 23 | public const STATUS_INACTIVE = 2; |
||
| 24 | |||
| 25 | public $status2; |
||
| 26 | public $sumTotal; |
||
| 27 | |||
| 28 | public static function tableName(): string |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | * @return CustomerQuery |
||
| 36 | */ |
||
| 37 | public static function find(): CustomerQuery |
||
| 46 |