<?php
namespace App\Komma\Sites;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* Interface HasSitesInterface
*
* Indicates that something belongs to a single site
*
* @mixin \Eloquent
*/
interface HasSiteInterface
{
/**
* Get the site for this model
*
* @return BelongsTo
*/
public function site(): BelongsTo;
}