File: D:/HostingSpaces/Neopoints/momsecurity.be/app/Komma/Dynamic/Component/ComponentableInterface.php
<?php
namespace App\Komma\Dynamic\Component;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Illuminate\Database\Eloquent\Relations\MorphToMany;
/**
* Interface ComponentableInterface
*
* Defines that the given implementor implements a components method.
* Used by eloquent models.
*
* @package App\Komma\Dynamic\Component
*/
interface ComponentableInterface
{
/**
* Return the components of this model
*
* @return MorphToMany
*/
public function components(): BelongsToMany;
}