League\Monga\Query\Update::pullAll PHP Метод

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

Removes all matched instances from a field array
public pullAll ( string $field, string $value, string $operator = null ) : object
$field string field to unshift
$value string values to remove
$operator string condition operator
Результат object $this
    public function pullAll($field, $value, $operator = null)
    {
        return $this->pull($field, $value, $operator, true);
    }