Esempio n. 1
0
 /**
  * @return mixed
  */
 public function getMapped()
 {
     $result = null;
     if ($this->isApplicable()) {
         $result = $this->postProcessMapped($this->performMap());
     } elseif ($this->nextMapper) {
         $this->nextMapper->setInputData($this->inputData);
         $result = $this->nextMapper->getMapped();
     } else {
         \XLite\Logger::logCustom("PitneyBowes", 'Internal error in mapper ' . get_class($this), false);
     }
     return $result;
 }