File tree 1 file changed +3
-3
lines changed
src/Symfony/Component/DomCrawler 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class Crawler extends \SplObjectStorage
25
25
/**
26
26
* @var string The current URI or the base href value
27
27
*/
28
- private $ uri ;
28
+ protected $ uri ;
29
29
30
30
/**
31
31
* Constructor.
@@ -704,7 +704,7 @@ public static function xpathLiteral($s)
704
704
return sprintf ("concat(%s) " , implode ($ parts , ', ' ));
705
705
}
706
706
707
- private function getNode ($ position )
707
+ protected function getNode ($ position )
708
708
{
709
709
foreach ($ this as $ i => $ node ) {
710
710
if ($ i == $ position ) {
@@ -717,7 +717,7 @@ private function getNode($position)
717
717
// @codeCoverageIgnoreEnd
718
718
}
719
719
720
- private function sibling ($ node , $ siblingDir = 'nextSibling ' )
720
+ protected function sibling ($ node , $ siblingDir = 'nextSibling ' )
721
721
{
722
722
$ nodes = array ();
723
723
You can’t perform that action at this time.
0 commit comments