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