InfluxOW/php-project-lvl2

View on GitHub
src/Parsers/AbstractParser.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Differ\Parsers;

use Differ\Exceptions\ParsingException;

abstract class AbstractParser
{
    public const NAME = null;

    /**
     * @throws ParsingException
     */
    abstract public static function parse(string $data): array;
}