for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MathieuTu\PDFLayer\Exceptions;
class ErrorReturned
{
public $code;
public $type;
public $info;
public function __construct($error)
foreach ($error->error as $key => $value) {
$this->{$key} = $value;
}