for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Omnipay\Paysera\Message;
use Omnipay\Common\Message\AbstractRequest as OmnipayAbstractRequest;
abstract class AbstractRequest extends OmnipayAbstractRequest
{
/**
* Get the Project ID.
*
* @return string
*/
public function getProjectId()
return $this->getParameter('projectId');
}
* Set the Project ID.
* @param string $value
* @return $this
public function setProjectId($value)
return $this->setParameter('projectId', $value);
* Get the password.
public function getPassword()
return $this->getParameter('password');
* Set the password.
public function setPassword($value)
return $this->setParameter('password', $value);