You are here

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

Resets the date to end of the quarter and time to 23:59:59

Return value

static

File

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

Class

Carbon
A simple API extension for DateTime

Namespace

Drupal\persian_date\Library\Carbon

Code

public function endOfQuarter() {
  return $this
    ->startOfQuarter()
    ->addMonths(static::MONTHS_PER_QUARTER - 1)
    ->endOfMonth();
}