wol-soft/php-json-schema-model-generator-production

View on GitHub
src/Format/FormatValidatorInterface.php

Summary

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

declare(strict_types = 1);

namespace PHPModelGenerator\Format;

interface FormatValidatorInterface
{
    /**
     * Validate if the given $input is valid for the format
     *
     * @param string $input
     *
     * @return bool
     */
    public static function validate(string $input): bool;
}