# File lib/holidays.rb, line 265
  def self.to_monday_if_sunday(date)
    date += 1 if date.wday == 0
    date
  end