You are here

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

Remove hours from the instance

Parameters

int $value:

Return value

static

1 call to Carbon::subHours()
Carbon::subHour in src/Library/Carbon/Carbon.php
Remove an hour from the instance

File

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

Class

Carbon
A simple API extension for DateTime

Namespace

Drupal\persian_date\Library\Carbon

Code

public function subHours($value) {
  return $this
    ->addHours(-1 * $value);
}