for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Reservation
*
* @author Pronamic <[email protected]>
* @copyright 2005-2018 Pronamic
* @license GPL-3.0-or-later
* @package Pronamic\WordPress\Pay\Payments
*/
namespace Pronamic\WordPress\Pay\Gateways\Sisow;
* Title: Sisow reservation
* Description:
* Copyright: Copyright (c) 2005 - 2018
* Company: Pronamic
* @author Reüel van der Steege
* @version 2.0.1
* @since 2.0.1
class Reservation {
* The status of the transaction
* @var string
public $status;
* Create an string representation of this object
* @return string
public function __toString() {
return $this->status;
}