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\ActiveRecord;
use Yiisoft\ActiveRecord\ActiveRecord;
/**
* Class Order.
*
* @property int $id
* @property int $customer_id
* @property int $created_at
* @property string $total
*/
final class OrderWithNullFK extends ActiveRecord
{
public function getTableName(): string
return 'order_with_null_fk';
}