소스 검색

Fix an indentation problem in Crawler.php

Matthieu Bontemps 15 년 전
부모
커밋
5e1c495bbb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Symfony/Components/DomCrawler/Crawler.php

+ 1 - 1
src/Symfony/Components/DomCrawler/Crawler.php

@@ -477,7 +477,7 @@ class Crawler extends \SplObjectStorage
         $xpath  = sprintf('//a[contains(concat(\' \', normalize-space(string(.)), \' \'), %s)] ', static::xpathLiteral(' '.$value.' ')).
                             sprintf('| //a/img[contains(concat(\' \', normalize-space(string(@alt)), \' \'), %s)]/ancestor::a', static::xpathLiteral(' '.$value.' '));
 
-     return $this->filterXPath($xpath);
+        return $this->filterXPath($xpath);
     }
 
     /**