View file vendor/visavi/motor-orm/tests/Models/Test4.php

File size: 298B
<?php

namespace MotorORM\Tests\Models;

use MotorORM\Model;

/**
 * Class Test4
 *
 * @property int column1
 * @property string column2
 * @property string column3
 * @property string column4
 */
class Test4 extends Model
{
    public string $filePath = __DIR__ . '/../../tests/data/test4.csv';
}