aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/Parsers/ParserInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/namespace/Parsers/ParserInterface.php')
-rw-r--r--core/namespace/Parsers/ParserInterface.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/namespace/Parsers/ParserInterface.php b/core/namespace/Parsers/ParserInterface.php
new file mode 100644
index 0000000..8dd94e2
--- /dev/null
+++ b/core/namespace/Parsers/ParserInterface.php
@@ -0,0 +1,7 @@
+<?php
+namespace Parsers;
+
+interface ParserInterface {
+ public function parse(string $text): array;
+ public function transform(string $text): string;
+}