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

__construct() public method

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