daveearley/cli.fyi

View on GitHub
src/Exception/ApiExceptionInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace CliFyi\Exception;

interface ApiExceptionInterface
{
    /**
     * @return int
     */
    public function getStatusCode(): int;
}