for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Audiens\DoubleclickClient\entity;
class Error
{
use HydratableTrait;
/** @var string */
protected $faultcode;
protected $faultstring;
public function getFaultcode()
return $this->faultcode;
}
public function getFaultstring()
return $this->faultstring;
public function __toString()
return $this->faultcode.': '.$this->faultstring;