for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Nexy\PayboxDirect\Response;
/**
* @author Sullivan Senechal <[email protected]>
*/
final class DirectPlusResponse extends AbstractResponse
{
* @var string
private $subscriberRef;
* @var string|false False if empty.
private $bearer;
* {@inheritdoc}
public function __construct(array $parameters)
parent::__construct($parameters);
$this->subscriberRef = $this->filteredParameters['REFABONNE'];
$this->bearer = $this->filteredParameters['PORTEUR'];
}
* @return string
public function getSubscriberRef()
return $this->subscriberRef;
public function getBearer()
return $this->bearer;