for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* Micro
*
* @author Raffael Sahli <[email protected]>
* @copyright Copryright (c) 2015-2018 gyselroth GmbH (https://gyselroth.com)
* @license MIT https://opensource.org/licenses/MIT
*/
namespace Micro\Http\Exception;
use Micro\Http\ExceptionInterface;
class MissingInputArgument extends \Exception implements ExceptionInterface
{
* {@inheritdoc}
public function getStatusCode(): int
return 422;
}