You are here

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

Remove quarters from the instance

Parameters

int $value:

Return value

static

1 call to Carbon::subQuarters()
Carbon::subQuarter in src/Library/Carbon/Carbon.php
Remove a quarter from the instance

File

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

Class

Carbon
A simple API extension for DateTime

Namespace

Drupal\persian_date\Library\Carbon

Code

public function subQuarters($value) {
  return $this
    ->addQuarters(-1 * $value);
}