heymoon-cc/php-vector-tile-data-provider

View on GitHub
src/Exception/SupportExceptionInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace HeyMoon\VectorTileDataProvider\Exception;

use Throwable;

interface SupportExceptionInterface extends Throwable
{
    public function getExtension(): string;

    public function getRequirements(): array;
}