You are here

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

Remove months from the instance

Parameters

int $value:

Return value

static

1 call to Carbon::subMonthsWithOverflow()
Carbon::subMonthWithOverflow in src/Library/Carbon/Carbon.php
Remove a month from the instance

File

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

Class

Carbon
A simple API extension for DateTime

Namespace

Drupal\persian_date\Library\Carbon

Code

public function subMonthsWithOverflow($value) {
  return $this
    ->addMonthsWithOverflow(-1 * $value);
}