engelsystem/tests/Unit/Controllers/Stub/TestModel.php

22 lines
425 B
PHP
Raw Normal View History

2020-10-21 00:11:33 +02:00
<?php
namespace Engelsystem\Test\Unit\Controllers\Stub;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
/**
* @property string $text
* @property string $another_text
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
*/
class TestModel extends Model
{
/** @var array<string> */
protected $fillable = [ // phpcs:ignore
2020-10-21 00:11:33 +02:00
'text',
'another_text',
];
}