Version 1
[yaffs-website] / vendor / caxy / php-htmldiff / lib / Caxy / HtmlDiff / Strategy / MatchStrategyInterface.php
diff --git a/vendor/caxy/php-htmldiff/lib/Caxy/HtmlDiff/Strategy/MatchStrategyInterface.php b/vendor/caxy/php-htmldiff/lib/Caxy/HtmlDiff/Strategy/MatchStrategyInterface.php
new file mode 100644 (file)
index 0000000..9729c0d
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+namespace Caxy\HtmlDiff\Strategy;
+
+interface MatchStrategyInterface
+{
+    /**
+     * @param string $a
+     * @param string $b
+     *
+     * @return bool
+     */
+    public function isMatch($a, $b);
+}