public function Carbon::isLastWeek in Persian Date for Drupal 8 8.4
Determines if the instance is within the last week
Return value
bool
File
- src/
Library/ Carbon/ Carbon.php, line 1726
Class
- Carbon
- A simple API extension for DateTime
Namespace
Drupal\persian_date\Library\CarbonCode
public function isLastWeek() {
return $this->weekOfYear === static::now($this
->getTimezone())
->subWeek()->weekOfYear;
}