LMongo\Eloquent\Model::increment PHP Méthode

increment() protected méthode

Increment a column's value by a given amount.
protected increment ( string $column, integer $amount = 1 ) : integer
$column string
$amount integer
Résultat integer
    protected function increment($column, $amount = 1)
    {
        return $this->incrementOrDecrement($column, $amount, 'increment');
    }
Model