for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CultureKings\Afterpay\Model\Merchant;
use CultureKings\Afterpay\Model\Money;
/**
* Class Configuration
*
* @package CultureKings\Afterpay\Model
*/
class Configuration
{
* @var string
protected $type;
protected $description;
* @var Money
protected $minimumAmount;
protected $maximumAmount;
* @return string
public function getType()
return $this->type;
}
* @return mixed
public function getDescription()
return $this->description;
* @return Money
public function getMinimumAmount()
return $this->minimumAmount;
public function getMaximumAmount()
return $this->maximumAmount;
* @param string $type
* @return $this
public function setType($type)
$this->type = $type;
return $this;
* @param string $description
public function setDescription($description)
$this->description = $description;
* @param Money $minimumAmount
public function setMinimumAmount(Money $minimumAmount)
$this->minimumAmount = $minimumAmount;
* @param Money $maximumAmount
public function setMaximumAmount(Money $maximumAmount)
$this->maximumAmount = $maximumAmount;