3cea8cfdaa4c3c71a4ecb33735cf16746cea0584
[yaffs-website] / vendor / caxy / php-htmldiff / lib / Caxy / HtmlDiff / Strategy / EqualMatchStrategy.php
1 <?php
2
3 namespace Caxy\HtmlDiff\Strategy;
4
5 class EqualMatchStrategy implements MatchStrategyInterface
6 {
7     /**
8      * @param string $a
9      * @param string $b
10      *
11      * @return bool
12      */
13     public function isMatch($a, $b)
14     {
15         return $a === $b;
16     }
17 }