mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-09 05:38:39 +00:00
fix typehint
This commit is contained in:
parent
f65032e4c9
commit
9fde93c0c4
|
|
@ -24,12 +24,12 @@ use phpOMS\tests\DataStorage\Database\TestModel\ManyToManyDirectModelMapper;
|
||||||
*/
|
*/
|
||||||
class DataMapperAbstractTest extends \PHPUnit\Framework\TestCase
|
class DataMapperAbstractTest extends \PHPUnit\Framework\TestCase
|
||||||
{
|
{
|
||||||
protected $model = null;
|
protected BaseModel $model;
|
||||||
protected $modelArray = null;
|
protected array $modelArray;
|
||||||
|
|
||||||
protected function setUp() : void
|
protected function setUp() : void
|
||||||
{
|
{
|
||||||
\var_dump(1);
|
var_dump(1);
|
||||||
$this->model = new BaseModel();
|
$this->model = new BaseModel();
|
||||||
$this->modelArray = [
|
$this->modelArray = [
|
||||||
'id' => 0,
|
'id' => 0,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user