for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\ActiveRecord\Tests\Stubs\MagicActiveRecord;
use Yiisoft\ActiveRecord\Tests\Stubs\MagicActiveRecord;
/**
* Class Customer.
*
* @property int $id
* @property string $name
* @property string $email
* @property string $address
* @property int $status
* @method CustomerQuery findBySql($sql, $params = []) static
*/
final class CustomerWithAlias extends MagicActiveRecord
{
public const STATUS_ACTIVE = 1;
public const STATUS_INACTIVE = 2;
public int $status2;
public float $sumTotal;
public function getTableName(): string
return 'customer';
}