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

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

Pushes a value onto a field array
public pushAll ( string $field, array $values ) : object
$field string field name
$values array value to append to the array
Результат object $this
    public function pushAll($field, array $values)
    {
        return $this->push($field, $values, true);
    }