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