@@ -9,7 +9,7 @@ |
||
9 | 9 | /** |
10 | 10 | * Este metodo permite obtener otros elementos internos. |
11 | 11 | * @param string $css_selector Cadena de texto con el selector css requerido. |
12 | - * @return PHPTools\PHPHtmlDom\Core\PHPHtmlDomList|Null |
|
12 | + * @return PHPHtmlDomList|null |
|
13 | 13 | */ |
14 | 14 | final public function find($css_selector) |
15 | 15 | { |
@@ -82,7 +82,7 @@ |
||
82 | 82 | /** |
83 | 83 | * Metodo que permite buscar elementos hijos a partir de un selector css. |
84 | 84 | * @param string $css_selector Cadena de texto con el selector css. |
85 | - * @return PHPTools\PHPHtmlDom\Core\PHPHtmlDomList |
|
85 | + * @return Core\PHPHtmlDomList|null |
|
86 | 86 | */ |
87 | 87 | final public function e($css_selector) |
88 | 88 | { |
@@ -20,7 +20,7 @@ |
||
20 | 20 | |
21 | 21 | public function __construct() |
22 | 22 | { |
23 | - $this->context = stream_context_create($this->context_options); |
|
23 | + $this->context = stream_context_create($this->context_options); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
@@ -78,9 +78,9 @@ |
||
78 | 78 | */ |
79 | 79 | private function get_childs() |
80 | 80 | { |
81 | - $this->childs = new \PHPTools\PHPHtmlDom\Core\PHPHtmlDomList($this->dom_element->childNodes); |
|
81 | + $this->childs = new \PHPTools\PHPHtmlDom\Core\PHPHtmlDomList($this->dom_element->childNodes); |
|
82 | 82 | |
83 | - return $this; |
|
83 | + return $this; |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | /** |