1
0
Fork 0
This repository has been archived on 2017-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
informaticaD4P-2017-omnipay.../src/Message/AbstractRequest.php

31 lines
653 B
PHP
Raw Normal View History

<?php
namespace Omnipay\Inforbank\Message;
use Omnipay\Common\Message\AbstractRequest as BaseAbstractRequest;
abstract class AbstractRequest extends BaseAbstractRequest
{
abstract protected function generateSignature();
public function getClientId()
{
return $this->getParameter('clientId');
}
2017-02-19 11:24:32 +00:00
public function setClientId($value)
{
return $this->setParameter('clientId', $value);
}
public function getClientSecret()
{
return $this->getParameter('clientSecret');
}
2017-02-19 11:24:32 +00:00
public function setClientSecret($value)
{
return $this->setParameter('clientSecret', $value);
}
}