You are here

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

Resets the date to the first day of the year and the time to 00:00:00

Return value

static

File

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

Class

Carbon
A simple API extension for DateTime

Namespace

Drupal\persian_date\Library\Carbon

Code

public function startOfYear() {
  return $this
    ->setDateTime($this->year, 1, 1, 0, 0, 0);
}