LdapTools\Query\Operator\MatchingRule::__construct PHP Метод

__construct() публичный Метод

public __construct ( string $attribute, string $oid, mixed $value )
$attribute string
$oid string
$value mixed
    public function __construct($attribute, $oid, $value)
    {
        $this->validOperators = [self::SYMBOL];
        $this->operatorSymbol = self::SYMBOL;
        $this->setAttribute($attribute);
        $this->value = $value;
        $this->oid = $oid;
    }