11 lines
91 B
PHP
11 lines
91 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Database\Traits;
|
||
|
|
|
||
|
|
interface Relation
|
||
|
|
{
|
||
|
|
|
||
|
|
public function get(): mixed;
|
||
|
|
|
||
|
|
}
|