16 lines
169 B
PHP
16 lines
169 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Database\Traits;
|
|
|
|
interface Relation
|
|
{
|
|
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function get(): mixed;
|
|
|
|
}
|