Networking\InitCmsBundle\Model\ContentRouteInterface::getClassType PHP Метод

getClassType() публичный Метод

public getClassType ( ) : string
Результат string
    public function getClassType();

Usage Example

Пример #1
0
 public function findContentByContentRoute(ContentRouteInterface $contentRoute)
 {
     $repository = $this->objectManager->getRepository($contentRoute->getClassType());
     return $repository->find($contentRoute->getObjectId());
 }