21 lines
390 B
PHP
21 lines
390 B
PHP
<?php
|
|
|
|
namespace Tests\Models;
|
|
|
|
use Libs\Model;
|
|
|
|
/**
|
|
* Post - DuckBrain test fixture
|
|
*
|
|
* Second table of the integration matrix, joined to Users through user_id.
|
|
* Column names avoid SQL reserved words on every engine.
|
|
*/
|
|
final class Post extends Model
|
|
{
|
|
public ?int $id;
|
|
public ?int $userId;
|
|
public string $title;
|
|
public ?string $content;
|
|
public ?float $rating;
|
|
}
|