1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

21 lines
427 B
PHP

<?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');
}
public function getClientSecret()
{
return $this->getParameter('clientSecret');
}
}