File: D:/HostingSpaces/blijegasten/blijegasten.be/app/Komma/Kms/Core/RelatedModelServiceInterface.php
<?php declare(strict_types=1);
namespace App\Komma\Kms\Core;
/**
* RelatedModelServiceInterface ModelService
*
* Does know how to work with eloquent models and their hasmany relations.
*
* @package App\Komma\Kms\Core
*/
interface RelatedModelServiceInterface extends AbstractModelHandlerInterface
{
/**
* @param string $modelClassName
*/
public function setModelClassName(string $modelClassName): void;
}