예제 #1
0
파일: Properties.php 프로젝트: BauRo/url
 /**
  * {@inheritdoc}
  */
 public function sameValueAs(UriInterface $url)
 {
     try {
         return static::createFromComponents($this->schemeRegistry, static::Parse($url->__toString()))->toAscii()->normalize()->ksortQuery()->__toString() === $this->toAscii()->normalize()->ksortQuery()->__toString();
     } catch (InvalidArgumentException $e) {
         return false;
     }
 }