You are here

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

Determines if the instance is within the next week

Return value

bool

File

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

Class

Carbon
A simple API extension for DateTime

Namespace

Drupal\persian_date\Library\Carbon

Code

public function isNextWeek() {
  return $this->weekOfYear === static::now($this
    ->getTimezone())
    ->addWeek()->weekOfYear;
}