You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
404 B
PHP
22 lines
404 B
PHP
<?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 string[] */
|
|
protected $fillable = [
|
|
'text',
|
|
'another_text',
|
|
];
|
|
}
|