https://www.phpfastcache.com * @author Georges.L (Geolim4) * */ declare(strict_types=1); namespace Phpfastcache\Util; /** * Interface ClassNamespaceResolverInterface * @package Phpfastcache\Util */ interface ClassNamespaceResolverInterface { /** * @return string */ public function getClassNamespace(): string; /** * @return string */ public function getClassName(): string; }