File: D:/HostingSpaces/SBogers10/momsecurity.komma.nl/vendor/komma/kms/src/Sites/HasSiteInterface.php
<?php
namespace Komma\KMS\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\Sites
*/
interface HasSiteInterface
{
/**
* Get the site for this model
*
* @return BelongsTo
*/
public function site(): BelongsTo;
}