diff --git a/src/Symfony/Component/DomCrawler/Crawler.php b/src/Symfony/Component/DomCrawler/Crawler.php index 03c6effebcd90..8249bcdba6a0b 100644 --- a/src/Symfony/Component/DomCrawler/Crawler.php +++ b/src/Symfony/Component/DomCrawler/Crawler.php @@ -25,7 +25,7 @@ class Crawler extends \SplObjectStorage /** * @var string The current URI or the base href value */ - private $uri; + protected $uri; /** * Constructor. @@ -702,7 +702,7 @@ public static function xpathLiteral($s) return sprintf("concat(%s)", implode($parts, ', ')); } - private function getNode($position) + protected function getNode($position) { foreach ($this as $i => $node) { if ($i == $position) { @@ -715,7 +715,7 @@ private function getNode($position) // @codeCoverageIgnoreEnd } - private function sibling($node, $siblingDir = 'nextSibling') + protected function sibling($node, $siblingDir = 'nextSibling') { $nodes = array();