Networking\InitCmsBundle\Model\ContentRouteInterface::getClassType PHP Method

getClassType() public method

public getClassType ( ) : string
return string
    public function getClassType();

Usage Example

 public function findContentByContentRoute(ContentRouteInterface $contentRoute)
 {
     $repository = $this->objectManager->getRepository($contentRoute->getClassType());
     return $repository->find($contentRoute->getObjectId());
 }