You are here

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

Determines if the instance is greater (after) than or equal to another

Parameters

Carbon $dt:

Return value

bool

See also

gte()

File

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

Class

Carbon
A simple API extension for DateTime

Namespace

Drupal\persian_date\Library\Carbon

Code

public function greaterThanOrEqualTo(Carbon $dt) {
  return $this
    ->gte($dt);
}