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 GNU General Public License version 3 (GPLv3)
* For the full copyright and license information, please view the LICENSE.md and gpl-3.0.txt
* files that are distributed with this source code.
* @copyright Copyright (c) 2016 Woche-Pass AG (http://www.w-vision.ch)
* @license GNU General Public License version 3 (GPLv3)
*/
namespace Omnipay\Datatrans\Message;
* Datatrans Complete Purchase Response
class CompletePurchaseResponse extends AbstractResponse
{
* @return bool
public function isSuccessful()
$status = $this->getStatus();
return $status === 'success';
}
public function isRedirect()
return false;