[DomCrawler] moved protected to private

This commit is contained in:
Fabien Potencier 2011-03-11 15:13:33 +01:00
parent f321fadad6
commit c8c5720fa1
4 changed files with 24 additions and 24 deletions

View File

@ -20,10 +20,10 @@ use Symfony\Component\CssSelector\Parser as CssParser;
*/
class Crawler extends \SplObjectStorage
{
protected $uri;
protected $host;
protected $path;
protected $base;
private $uri;
private $host;
private $path;
private $base;
/**
* Constructor.
@ -560,7 +560,7 @@ class Crawler extends \SplObjectStorage
return $form;
}
protected function getNode($position)
private function getNode($position)
{
foreach ($this as $i => $node) {
if ($i == $position) {
@ -573,7 +573,7 @@ class Crawler extends \SplObjectStorage
// @codeCoverageIgnoreEnd
}
protected function parseUri($uri)
private function parseUri($uri)
{
if ('http' !== substr($uri, 0, 4)) {
return array(null, '/');
@ -584,7 +584,7 @@ class Crawler extends \SplObjectStorage
return array(preg_replace('#^(.*?//[^/]+)\/.*$#', '$1', $uri), $path);
}
protected function sibling($node, $siblingDir = 'nextSibling')
private function sibling($node, $siblingDir = 'nextSibling')
{
$nodes = array();

View File

@ -20,9 +20,9 @@ namespace Symfony\Component\DomCrawler\Field;
*/
class ChoiceFormField extends FormField
{
protected $type;
protected $multiple;
protected $options;
private $type;
private $multiple;
private $options;
/**
* Returns true if the field should be included in the submitted values.

View File

@ -20,14 +20,14 @@ use Symfony\Component\DomCrawler\Field\FormField;
*/
class Form implements \ArrayAccess
{
protected $document;
protected $button;
protected $node;
protected $fields;
protected $method;
protected $host;
protected $path;
protected $base;
private $document;
private $button;
private $node;
private $fields;
private $method;
private $host;
private $path;
private $base;
/**
* Constructor.
@ -269,7 +269,7 @@ class Form implements \ArrayAccess
return $this->fields;
}
protected function initialize()
private function initialize()
{
$this->fields = array();

View File

@ -18,11 +18,11 @@ namespace Symfony\Component\DomCrawler;
*/
class Link
{
protected $node;
protected $method;
protected $host;
protected $path;
protected $base;
private $node;
private $method;
private $host;
private $path;
private $base;
/**
* Constructor.