for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Nexy\PayboxDirect\Request;
/**
* @author Sullivan Senechal <[email protected]>
*/
trait AuthorizationTrait
{
* @var string|null
private $authorization = null;
* @param string|null $authorization
*
* @return $this
final public function setAuthorization($authorization = null)
$this->authorization = $authorization;
return $this;
}
* @return string|null
final protected function getAuthorization()
return $this->authorization;