LMongo\Eloquent\Model::increment PHP 메소드

increment() 보호된 메소드

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