You are here

public function Carbon::addMonthWithOverflow in Persian Date for Drupal 8 8.4

Add a month to the instance

Parameters

int $value:

Return value

static

File

src/Library/Carbon/Carbon.php, line 2181

Class

Carbon
A simple API extension for DateTime

Namespace

Drupal\persian_date\Library\Carbon

Code

public function addMonthWithOverflow($value = 1) {
  return $this
    ->addMonthsWithOverflow($value);
}