You are here

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

Remove years from the instance.

Parameters

int $value:

Return value

static

1 call to Carbon::subYears()
Carbon::subYear in src/Library/Carbon/Carbon.php
Remove a year from the instance

File

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

Class

Carbon
A simple API extension for DateTime

Namespace

Drupal\persian_date\Library\Carbon

Code

public function subYears($value) {
  return $this
    ->addYears(-1 * $value);
}