You are here

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

Go backward to the previous weekend day.

Return value

$this

File

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

Class

Carbon
A simple API extension for DateTime

Namespace

Drupal\persian_date\Library\Carbon

Code

public function previousWeekendDay() {
  return $this
    ->nextOrPreviousDay(false, false);
}