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.
@@ -702,7 +702,7 @@ public static function xpathLiteral($s)
702
702
return sprintf ("concat(%s) " , implode ($ parts , ', ' ));
703
703
}
704
704
705
- private function getNode ($ position )
705
+ protected function getNode ($ position )
706
706
{
707
707
foreach ($ this as $ i => $ node ) {
708
708
if ($ i == $ position ) {
@@ -715,7 +715,7 @@ private function getNode($position)
715
715
// @codeCoverageIgnoreEnd
716
716
}
717
717
718
- private function sibling ($ node , $ siblingDir = 'nextSibling ' )
718
+ protected function sibling ($ node , $ siblingDir = 'nextSibling ' )
719
719
{
720
720
$ nodes = array ();
721
721
You can’t perform that action at this time.
0 commit comments