Beispiel #1
0
 /**
  * 2016-08-27
  * @used-by \Dfe\AllPay\Controller\CustomerReturn\Index::message()
  * @param string $key
  * @return string|null
  */
 protected function transP($key)
 {
     return !$this->t() ? null : df_trans_raw_details($this->t(), $key);
 }
Beispiel #2
0
 /**
  * 2016-07-18
  * @return Response[]
  */
 private function responses()
 {
     return dfc($this, function () {
         /** @var string $class */
         $class = df_con($this, 'Response');
         return array_map(function (T $t) use($class) {
             return call_user_func([$class, 'i'], df_trans_raw_details($t));
         }, $this->transChildren());
     });
 }
Beispiel #3
0
 /**
  * 2016-07-10
  * @return array(string => mixed)
  */
 private function requestInfo()
 {
     return dfc($this, function () {
         return df_trans_raw_details($this->requestTransaction());
     });
 }