Jackalope\Query\QOM\NodeName::__construct PHP Method

__construct() public method

Constructor
public __construct ( string $selectorName )
$selectorName string
    public function __construct($selectorName)
    {
        if (null === $selectorName) {
            throw new \InvalidArgumentException('Required argument selectorName may not be null.');
        }
        $this->selectorName = $selectorName;
    }