for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Loevgaard\AltaPay\Response\GetTerminals\Terminal;
use Loevgaard\AltaPay\Response\PartialResponse;
class Currency extends PartialResponse
{
/**
* @var string
*/
protected $currency;
protected function init()
$this->currency = (string)$this->xmlDoc;
}
* @return string
public function getCurrency(): string
return $this->currency;