PHP Класс Adldap\Query\Bindings\Where

Наследование: extends AbstractBinding
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$field string The field of the where binding.
$operator string The operator of the where binding.
$value string The value of the where binding.

Открытые методы

Метод Описание
__construct ( string $field, string $operator, string $value ) Constructor.
getField ( ) : string Returns the where bindings field.
getOperator ( ) : string Returns the where bindings operator.
getValue ( ) : string Returns the where bindings value.

Защищенные методы

Метод Описание
validateOperator ( string $operator ) : string Retrieves an operator from the available operators.

Описание методов

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

Constructor.
public __construct ( string $field, string $operator, string $value )
$field string
$operator string
$value string

getField() публичный метод

Returns the where bindings field.
public getField ( ) : string
Результат string

getOperator() публичный метод

Returns the where bindings operator.
public getOperator ( ) : string
Результат string

getValue() публичный метод

Returns the where bindings value.
public getValue ( ) : string
Результат string

validateOperator() защищенный метод

Throws an AdldapException if no operator is found.
protected validateOperator ( string $operator ) : string
$operator string
Результат string

Описание свойств

$field защищенное свойство

The field of the where binding.
protected string $field
Результат string

$operator защищенное свойство

The operator of the where binding.
protected string $operator
Результат string

$value защищенное свойство

The value of the where binding.
protected string $value
Результат string