Symfony\Component\CssSelector\Node
AbstractNode{} WC 1.0
Abstract base node class.
This component is a port of the Python cssselect library, which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
Хуков нет.
Возвращает
Null. Ничего.
Использование
$AbstractNode = new AbstractNode(); // use class methods
Методы
Код AbstractNode{} AbstractNode{} WC 5.0.0
abstract class AbstractNode implements NodeInterface
{
/**
* @var string
*/
private $nodeName;
/**
* @return string
*/
public function getNodeName()
{
if (null === $this->nodeName) {
$this->nodeName = preg_replace('~.*\\\\([^\\\\]+)Node$~', '$1', get_called_class());
}
return $this->nodeName;
}
}