2025-04-29 23:55:51 -04:00
|
|
|
<?php
|
2025-05-08 11:13:17 -04:00
|
|
|
namespace Tests\Extension;
|
2025-04-29 23:55:51 -04:00
|
|
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
use Incoviba\Common\Define\Model;
|
|
|
|
|
|
|
|
abstract class AbstractModel extends TestCase
|
|
|
|
{
|
|
|
|
protected Model $model;
|
2025-05-08 11:13:17 -04:00
|
|
|
}
|