You are here

public static function Carbon::shouldOverflowMonths in Persian Date for Drupal 8 8.4

Get the month overflow behavior.

Return value

bool

1 call to Carbon::shouldOverflowMonths()
Carbon::addMonths in src/Library/Carbon/Carbon.php
Add months to the instance. Positive $value travels forward while negative $value travels into the past.

File

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

Class

Carbon
A simple API extension for DateTime

Namespace

Drupal\persian_date\Library\Carbon

Code

public static function shouldOverflowMonths() {
  return static::$monthsOverflow;
}