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