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