Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / caxy / php-htmldiff / lib / Caxy / HtmlDiff / Strategy / MatchStrategyInterface.php
1 <?php
2
3 namespace Caxy\HtmlDiff\Strategy;
4
5 interface MatchStrategyInterface
6 {
7     /**
8      * @param string $a
9      * @param string $b
10      *
11      * @return bool
12      */
13     public function isMatch($a, $b);
14 }