/**
  * Gets the element entity processor.
  *
  * @return Dependency\ElementEntityProcessor
  */
 protected function getElementEntityProcessor()
 {
     if (!isset($this->elementEntityProcessor)) {
         $this->elementEntityProcessor = GeneralUtility::makeInstance(Dependency\ElementEntityProcessor::class);
         $this->elementEntityProcessor->setWorkspace($this->getWorkspace());
     }
     return $this->elementEntityProcessor;
 }
Example #2
0
 /**
  * Gets the element entity processor.
  *
  * @return \TYPO3\CMS\Version\Dependency\ElementEntityProcessor
  */
 protected function getElementEntityProcessor()
 {
     if (!isset($this->elementEntityProcessor)) {
         $this->elementEntityProcessor = GeneralUtility::makeInstance('TYPO3\\CMS\\Version\\Dependency\\ElementEntityProcessor');
         $this->elementEntityProcessor->setWorkspace($this->getWorkspace());
     }
     return $this->elementEntityProcessor;
 }