Example #1
0
 /**
  * Return true if the versions match.
  *
  * @param VersionInterface $lVersion
  * @param VersionInterface $rVersion
  *
  * @return boolean
  */
 public function compare(VersionInterface $lVersion, VersionInterface $rVersion)
 {
     return $lVersion->__toString() === $rVersion->__toString();
 }