for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* w-vision
*
* LICENSE
* This source file is subject to the MIT License
* For the full copyright and license information, please view the LICENSE.md
* file that are distributed with this source code.
* @copyright Copyright (c) 2016 Woche-Pass AG (http://www.w-vision.ch)
* @license MIT License
*/
namespace Omnipay\Datatrans\Message;
* Datatrans abstract request.
* Implements all property setters and getters.
abstract class AbstractRequest extends \Omnipay\Common\Message\AbstractRequest
{
* Get the MerchantId
* @return string
public function getMerchantId()
return $this->getParameter('merchantId');
}
* @param string $value your datatrans merchant ID
* @return $this
public function setMerchantId($value)
return $this->setParameter('merchantId', $value);
public function getSign()
return $this->getParameter('sign');
* @param string $value
public function setSign($value)
return $this->setParameter('sign', $value);