Automattic\WooCommerce\Vendor\Symfony\Component\CssSelector\Node
FunctionNode::__construct
Method of the class: FunctionNode{}
No Hooks.
Returns
null. Nothing (null).
Usage
$FunctionNode = new FunctionNode(); $FunctionNode->__construct( $selector, $name, $arguments );
- $selector(NodeInterface) (required)
- .
- $name(string) (required)
- .
- $arguments(Token[])
- .
Default:[]
FunctionNode::__construct() FunctionNode:: construct code WC 10.7.0
public function __construct(NodeInterface $selector, string $name, array $arguments = [])
{
$this->selector = $selector;
$this->name = strtolower($name);
$this->arguments = $arguments;
}