dataProcessorLocator->has($identifer)) { return null; } $dataProcessor = $this->dataProcessorLocator->get($identifer); if (!($dataProcessor instanceof DataProcessorInterface)) { throw new \UnexpectedValueException( 'Processor with alias / identifier "' . $identifer . '" ' . 'must implement interface "' . DataProcessorInterface::class . '"', 1666131903 ); } return $dataProcessor; } }