-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathcarbon-macros-helper.php
115 lines (114 loc) · 4.25 KB
/
carbon-macros-helper.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php
namespace Illuminate\Support {
/**
* Carbon
* @method bool isAlgerianIndependenceDay
* @method bool isAlgerianLaborDay
* @method bool isAlgerianRevolutionDay
* @method bool isAmazighNewYear
* @method bool isBrazilianDayOfTheDead
* @method bool isBrazilianIndependenceDay
* @method bool isBrazilianLaborDay
* @method bool isBrazilianRepublicProclamationDay
* @method bool isTheDayOfOurLadyAparecida
* @method bool isTiradentesDay
* @method bool isBoxingDay
* @method bool isCanadaDay
* @method bool isCanadianThanksgiving
* @method bool isCivicHoliday
* @method bool isFamilyDay
* @method bool isLabourDay
* @method bool isRemembranceDay
* @method bool isVictoriaDay
* @method bool isDutchLiberationDay
* @method bool isDutchNationalDay
* @method bool isDutchRemembranceDay
* @method bool isSaintNicholasEve
* @method bool isEgyptian2011RevolutionDay
* @method bool isEgyptian23JulyRevolutionDay
* @method bool isEgyptian30JuneRevolutionDay
* @method bool isEgyptian6OctoberVictoryDay
* @method bool isEgyptianChristmasDay
* @method bool isEgyptianLabourDay
* @method bool isEgyptianNationalPoliceDay
* @method bool isEgyptianSinaLiberationDay
* @method bool isAscensionDay
* @method bool isAssumptionDay
* @method bool isEasterMonday
* @method bool isFirstWarArmisticeDay
* @method bool isFrenchNationalDay
* @method bool isPentecostDay
* @method bool isSecondWarArmisticeDay
* @method bool isAscensionOfJesus
* @method bool isCorpusChristi
* @method bool isGermanLabourDay
* @method bool isGermanUnityDay
* @method bool isHeiligAbend
* @method bool isHeiligerAbend
* @method bool isPentecost
* @method bool isPentecostMonday
* @method bool isPentecostSunday
* @method bool isWhitMonday
* @method bool isWhitSunday
* @method bool isWhitsun
* @method bool isGandhiJayanti
* @method bool isIndianIndependenceDay
* @method bool isIndianRepublicDay
* @method bool isIndonesiaCustomerDay
* @method bool isIndonesianEducationDay
* @method bool isIndonesianHeroesDay
* @method bool isIndonesianIndependenceDay
* @method bool isIndonesianLaborDay
* @method bool isIndonesianMothersDay
* @method bool isKartiniDay
* @method bool isPancasilaDay
* @method bool isAssumptionOfMaryFeast
* @method bool isEpiphany
* @method bool isImmaculateConceptionFeast
* @method bool isLiberationDay
* @method bool isRepublicDay
* @method bool isSaintStephenDay
* @method bool isSaintSylvesterDay
* @method bool isWorkersDay
* @method bool isKenyanHudumaDay
* @method bool isKenyanIndependenceDay
* @method bool isKenyanJamhuriDay
* @method bool isKenyanLabourDay
* @method bool isKenyanMadarakaDay
* @method bool isKenyanMashujaaDay
* @method bool isKenyanUtamaduniDay
* @method bool isAllSaintsDay
* @method bool isChristmasDay
* @method bool isEasterSunday
* @method bool isGoodFriday
* @method bool isNewYearsDay
* @method bool isNewYearsEve
* @method bool isChristmasEve
* @method bool isSwedishMidsummerDay
* @method bool isSwedishNationalDay
* @method bool isKupalaNight
* @method bool isUkraineDefenderDay
* @method bool isUkrainianConstitutionDay
* @method bool isUkrainianIndependenceDay
* @method bool isUkrainianLabourDay
* @method bool isVictoryDayOverNazism
* @method bool isAmericanThanksgiving
* @method bool isColumbusDay
* @method bool isIndependenceDay
* @method bool isLaborDay
* @method bool isMemorialDay
* @method bool isMlkJrDay
* @method bool isPresidentsDay
* @method bool isVeteransDay
* @method bool isZambianAfricaDay
* @method bool isZambianAfricanUnityDay
* @method bool isZambianFarmersDay
* @method bool isZambianHeroesDay
* @method bool isZambianIndependenceDay
* @method bool isZambianLabourDay
* @method bool isZambianNationalPrayerDay
* @method bool isZambianUnityDay
* @method bool isZambianWomensDay
* @method bool isZambianYouthDay */
class Carbon extends \Carbon\Carbon {}
}