aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/Parsers/ParserInterface.php
blob: 8dd94e2f47ef34345dd66bbd42f6883e6c71c55e (plain)
1
2
3
4
5
6
7
<?php
namespace Parsers;

interface ParserInterface {
	public function parse(string $text): array;
	public function transform(string $text): string;
}