astehlik/typo3-extension-mediaoembed

View on GitHub
Classes/Service/AspectRatioCalculatorInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

declare(strict_types=1);

namespace Sto\Mediaoembed\Service;

interface AspectRatioCalculatorInterface
{
    public function calculateAspectRatio(string $aspectRatio): float;

    public function isValidAspectRatio(string $aspectRatio): bool;
}