11 lines
141 B
PHP
11 lines
141 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models\Contracts;
|
|
|
|
interface BelongsToUser
|
|
{
|
|
public function getUserColumnId(): string;
|
|
}
|