2022-01-09 03:49:51 +08:00
|
|
|
<?php
|
2023-04-16 01:45:33 +08:00
|
|
|
declare(strict_types=1);
|
2022-01-09 03:49:51 +08:00
|
|
|
|
|
|
|
|
namespace Database\Traits;
|
|
|
|
|
|
|
|
|
|
interface Relation
|
|
|
|
|
{
|
|
|
|
|
|
2023-10-24 17:22:29 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return mixed
|
|
|
|
|
*/
|
2022-01-09 03:49:51 +08:00
|
|
|
public function get(): mixed;
|
|
|
|
|
|
|
|
|
|
}
|