refreshless-8.x-1.x-dev/src/Service/FactoryWithValueClassInterface.php
src/Service/FactoryWithValueClassInterface.php
<?php
declare(strict_types=1);
namespace Drupal\refreshless\Service;
/**
* Interface for a factory service with a value object class method.
*/
interface FactoryWithValueClassInterface {
/**
* Get the value object class.
*
* @return string
* A fully qualified class name.
*/
public function getClass(): string;
}
