for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Happyr\ApiClient\Api;
use Happyr\ApiClient\Model\Norm\Index;
use Psr\Http\Message\ResponseInterface;
/**
* @author Tobias Nyholm <[email protected]>
*/
final class Norm extends HttpApi
{
* @return Index|ResponseInterface
public function index()
$response = $this->httpGet('/api/norms');
return $this->hydrateResponse($response, Index::class);
}