| 1 | <?php | ||
| 19 | final class EqualTo implements ComparatorInterface | ||
| 20 | { | ||
| 21 | /** | ||
| 22 | * Return true if the versions match. | ||
| 23 | * | ||
| 24 | * @param VersionInterface $lVersion | ||
| 25 | * @param VersionInterface $rVersion | ||
| 26 | * | ||
| 27 | * @return boolean | ||
| 28 | */ | ||
| 29 | 9 | public function compare(VersionInterface $lVersion, VersionInterface $rVersion) | |
| 33 | |||
| 34 | /** | ||
| 35 |      * {@inheritdoc} | ||
| 36 | */ | ||
| 37 | 1 | public function __toString() | |
| 41 | } | ||
| 42 |