for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2015 Alchemy
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Rest\Result;
class BadRequestResult
{
/** @var array */
private $metadata;
public function __construct(array $metadata = [])
$this->metadata = $metadata;
}
/**
* @return array
public function getMetadata()
return $this->metadata;