mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-03 19:24:59 +02:00
19 lines
316 B
PHP
19 lines
316 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Api\Parser;
|
|
|
|
abstract class Parser
|
|
{
|
|
/**
|
|
* The parameter to parse.
|
|
*/
|
|
abstract public static function param(): string;
|
|
|
|
/**
|
|
* Parse parameters to collection.
|
|
*/
|
|
abstract public static function parse(array $parameters): array;
|
|
}
|