/** * Retorna tipo e meio de pagamento * * @return array * @since 1.0 */ public function obterDadosPagamento() { return array('tipo' => PagSeguroTiposPagamento::tipoDePagamentoEmString($this->dadosTransacao->getPaymentMethod()->getType()->getValue()), 'metodo' => PagSeguroTiposPagamento::meioDePagamentoEmString($this->dadosTransacao->getPaymentMethod()->getCode()->getValue())); }
/** * Retorna tipo e meio de pagamento * * @return array * @since 2.1 */ public function obterDadosPagamento() { $dadosPagamento = array('tipo_id' => $this->consultaPorCodigo->getPaymentMethod()->getType()->getValue(), 'tipo' => PagSeguroTiposPagamento::tipoDePagamentoEmString($this->consultaPorCodigo->getPaymentMethod()->getType()->getValue()), 'metodo_id' => $this->consultaPorCodigo->getPaymentMethod()->getCode()->getValue(), 'metodo' => PagSeguroTiposPagamento::meioDePagamentoEmString($this->consultaPorCodigo->getPaymentMethod()->getCode()->getValue())); return $dadosPagamento; }