joubertredrat/ApiHelperBundle

View on GitHub
src/Options/ApiUrlPrefixOptionInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace RedRat\ApiHelperBundle\Options;

use Symfony\Component\HttpFoundation\Request;

interface ApiUrlPrefixOptionInterface
{
    public function isApiUrl(Request $request): bool;
}