You are here

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

Remove a minute from the instance

Parameters

int $value:

Return value

static

File

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

Class

Carbon
A simple API extension for DateTime

Namespace

Drupal\persian_date\Library\Carbon

Code

public function subMinute($value = 1) {
  return $this
    ->subMinutes($value);
}