ChronosInterface.php
32.3 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
<?php
/**
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @copyright Copyright (c) Brian Nesbitt <brian@nesbot.com>
* @link http://cakephp.org CakePHP(tm) Project
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Chronos;
use DateTimeInterface;
use DateTimeZone;
/**
* An extension to the DateTimeInterface for a friendlier API
*/
interface ChronosInterface extends DateTimeInterface
{
/**
* The day constants
*/
const MONDAY = 1;
const TUESDAY = 2;
const WEDNESDAY = 3;
const THURSDAY = 4;
const FRIDAY = 5;
const SATURDAY = 6;
const SUNDAY = 7;
/**
* Number of X in Y
*/
const YEARS_PER_CENTURY = 100;
const YEARS_PER_DECADE = 10;
const MONTHS_PER_YEAR = 12;
const WEEKS_PER_YEAR = 52;
const DAYS_PER_WEEK = 7;
const HOURS_PER_DAY = 24;
const MINUTES_PER_HOUR = 60;
const SECONDS_PER_MINUTE = 60;
/**
* Default format to use for __toString method when type juggling occurs.
*
* @var string
*/
const DEFAULT_TO_STRING_FORMAT = 'Y-m-d H:i:s';
/**
* Get a copy of the instance
*
* @return static
*/
public function copy();
/**
* Set the instance's year
*
* @param int $value The year value.
* @return static
*/
public function year($value);
/**
* Set the instance's month
*
* @param int $value The month value.
* @return static
*/
public function month($value);
/**
* Set the instance's day
*
* @param int $value The day value.
* @return static
*/
public function day($value);
/**
* Set the instance's hour
*
* @param int $value The hour value.
* @return static
*/
public function hour($value);
/**
* Set the instance's minute
*
* @param int $value The minute value.
* @return static
*/
public function minute($value);
/**
* Set the instance's second
*
* @param int $value The seconds value.
* @return static
*/
public function second($value);
/**
* Set the date and time all together
*
* @param int $year The year to set.
* @param int $month The month to set.
* @param int $day The day to set.
* @param int $hour The hour to set.
* @param int $minute The minute to set.
* @param int $second The second to set.
* @return static
*/
public function setDateTime($year, $month, $day, $hour, $minute, $second = 0);
/**
* Set the time by time string
*
* @param string $time Time as string.
* @return static
*/
public function setTimeFromTimeString($time);
/**
* Set the instance's timestamp
*
* @param int $value The timestamp value to set.
* @return static
*/
public function timestamp($value);
/**
* Alias for setTimezone()
*
* @param DateTimeZone|string $value The DateTimeZone object or timezone name to use.
* @return static
*/
public function timezone($value);
/**
* Alias for setTimezone()
*
* @param DateTimeZone|string $value The DateTimeZone object or timezone name to use.
* @return static
*/
public function tz($value);
/**
* Set the instance's timezone from a string or object
*
* @param DateTimeZone|string $value The DateTimeZone object or timezone name to use.
* @return static
*/
public function setTimezone($value);
/**
* Format the instance as date
*
* @return string
*/
public function toDateString();
/**
* Format the instance as a readable date
*
* @return string
*/
public function toFormattedDateString();
/**
* Format the instance as time
*
* @return string
*/
public function toTimeString();
/**
* Format the instance as date and time
*
* @return string
*/
public function toDateTimeString();
/**
* Format the instance with day, date and time
*
* @return string
*/
public function toDayDateTimeString();
/**
* Format the instance as ATOM
*
* @return string
*/
public function toAtomString();
/**
* Format the instance as COOKIE
*
* @return string
*/
public function toCookieString();
/**
* Format the instance as ISO8601
*
* @return string
*/
public function toIso8601String();
/**
* Format the instance as RFC822
*
* @return string
*/
public function toRfc822String();
/**
* Format the instance as RFC850
*
* @return string
*/
public function toRfc850String();
/**
* Format the instance as RFC1036
*
* @return string
*/
public function toRfc1036String();
/**
* Format the instance as RFC1123
*
* @return string
*/
public function toRfc1123String();
/**
* Format the instance as RFC2822
*
* @return string
*/
public function toRfc2822String();
/**
* Format the instance as RFC3339
*
* @return string
*/
public function toRfc3339String();
/**
* Format the instance as RSS
*
* @return string
*/
public function toRssString();
/**
* Format the instance as W3C
*
* @return string
*/
public function toW3cString();
/**
* Determines if the instance is equal to another
*
* @param ChronosInterface $dt The instance to compare with.
* @return bool
*/
public function eq(ChronosInterface $dt);
/**
* Determines if the instance is not equal to another
*
* @param ChronosInterface $dt The instance to compare with.
* @return bool
*/
public function ne(ChronosInterface $dt);
/**
* Determines if the instance is greater (after) than another
*
* @param ChronosInterface $dt The instance to compare with.
* @return bool
*/
public function gt(ChronosInterface $dt);
/**
* Determines if the instance is greater (after) than or equal to another
*
* @param ChronosInterface $dt The instance to compare with.
* @return bool
*/
public function gte(ChronosInterface $dt);
/**
* Determines if the instance is less (before) than another
*
* @param ChronosInterface $dt The instance to compare with.
* @return bool
*/
public function lt(ChronosInterface $dt);
/**
* Determines if the instance is less (before) or equal to another
*
* @param ChronosInterface $dt The instance to compare with.
* @return bool
*/
public function lte(ChronosInterface $dt);
/**
* Determines if the instance is between two others
*
* @param ChronosInterface $dt1 The instance to compare with.
* @param ChronosInterface $dt2 The instance to compare with.
* @param bool $equal Indicates if a > and < comparison should be used or <= or >=
* @return bool
*/
public function between(ChronosInterface $dt1, ChronosInterface $dt2, $equal = true);
/**
* Get the closest date from the instance.
*
* @param ChronosInterface $dt1 The instance to compare with.
* @param ChronosInterface $dt2 The instance to compare with.
* @return static
*/
public function closest(ChronosInterface $dt1, ChronosInterface $dt2);
/**
* Get the farthest date from the instance.
*
* @param ChronosInterface $dt1 The instance to compare with.
* @param ChronosInterface $dt2 The instance to compare with.
* @return static
*/
public function farthest(ChronosInterface $dt1, ChronosInterface $dt2);
/**
* Get the minimum instance between a given instance (default now) and the current instance.
*
* @param ChronosInterface|null $dt The instance to compare with.
* @return static
*/
public function min(ChronosInterface $dt = null);
/**
* Get the maximum instance between a given instance (default now) and the current instance.
*
* @param ChronosInterface|null $dt The instance to compare with.
* @return static
*/
public function max(ChronosInterface $dt = null);
/**
* Determines if the instance is a weekday
*
* @return bool
*/
public function isWeekday();
/**
* Determines if the instance is a weekend day
*
* @return bool
*/
public function isWeekend();
/**
* Determines if the instance is yesterday
*
* @return bool
*/
public function isYesterday();
/**
* Determines if the instance is today
*
* @return bool
*/
public function isToday();
/**
* Determines if the instance is tomorrow
*
* @return bool
*/
public function isTomorrow();
/**
* Determines if the instance is in the future, ie. greater (after) than now
*
* @return bool
*/
public function isFuture();
/**
* Determines if the instance is in the past, ie. less (before) than now
*
* @return bool
*/
public function isPast();
/**
* Determines if the instance is a leap year
*
* @return bool
*/
public function isLeapYear();
/**
* Checks if the passed in date is the same day as the instance current day.
*
* @param ChronosInterface $dt The instance to check against.
* @return bool
*/
public function isSameDay(ChronosInterface $dt);
/**
* Checks if this day is a Sunday.
*
* @return bool
*/
public function isSunday();
/**
* Checks if this day is a Monday.
*
* @return bool
*/
public function isMonday();
/**
* Checks if this day is a Tuesday.
*
* @return bool
*/
public function isTuesday();
/**
* Checks if this day is a Wednesday.
*
* @return bool
*/
public function isWednesday();
/**
* Checks if this day is a Thursday.
*
* @return bool
*/
public function isThursday();
/**
* Checks if this day is a Friday.
*
* @return bool
*/
public function isFriday();
/**
* Checks if this day is a Saturday.
*
* @return bool
*/
public function isSaturday();
/**
* Returns true if this object represents a date within the current week
*
* @return bool
*/
public function isThisWeek();
/**
* Returns true if this object represents a date within the current month
*
* @return bool
*/
public function isThisMonth();
/**
* Returns true if this object represents a date within the current year
*
* @return bool
*/
public function isThisYear();
/**
* Add years to the instance. Positive $value travel forward while
* negative $value travel into the past.
*
* @param int $value The number of years to add.
* @return static
*/
public function addYears($value);
/**
* Add a year to the instance
*
* @param int $value The number of years to add.
* @return static
*/
public function addYear($value = 1);
/**
* Remove a year from the instance
*
* @param int $value The number of years to remove.
* @return static
*/
public function subYear($value = 1);
/**
* Remove years from the instance.
*
* @param int $value The number of years to remove.
* @return static
*/
public function subYears($value);
/**
* Add months to the instance. Positive $value travels forward while
* negative $value travels into the past.
*
* When adding or subtracting months, if the resulting time is a date
* that does not exist, the result of this operation will always be the
* last day of the intended month.
*
* ### Example:
*
* ```
* (new Chronos('2015-01-03'))->addMonths(1); // Results in 2015-02-03
*
* (new Chronos('2015-01-31'))->addMonths(1); // Results in 2015-02-28
* ```
*
* @param int $value The number of months to add.
* @return static
*/
public function addMonths($value);
/**
* Add a month to the instance
*
* When adding or subtracting months, if the resulting time is a date
* that does not exist, the result of this operation will always be the
* last day of the intended month.
*
* ### Example:
*
* ```
* (new Chronos('2015-01-03'))->addMonth(); // Results in 2015-02-03
*
* (new Chronos('2015-01-31'))->addMonth(); // Results in 2015-02-28
* ```
*
* @param int $value The number of months to add.
* @return static
*/
public function addMonth($value = 1);
/**
* Remove a month from the instance
*
* When adding or subtracting months, if the resulting time is a date
* that does not exist, the result of this operation will always be the
* last day of the intended month.
*
* ### Example:
*
* ```
* (new Chronos('2015-03-01'))->subMonth(); // Results in 2015-02-01
*
* (new Chronos('2015-03-31'))->subMonth(); // Results in 2015-02-28
* ```
*
* @param int $value The number of months to remove.
* @return static
*/
public function subMonth($value = 1);
/**
* Remove months from the instance
*
* When adding or subtracting months, if the resulting time is a date
* that does not exist, the result of this operation will always be the
* last day of the intended month.
*
* ### Example:
*
* ```
* (new Chronos('2015-03-01'))->subMonths(1); // Results in 2015-02-01
*
* (new Chronos('2015-03-31'))->subMonths(1); // Results in 2015-02-28
* ```
*
* @param int $value The number of months to remove.
* @return static
*/
public function subMonths($value);
/**
* Add months with overflowing to the instance. Positive $value
* travels forward while negative $value travels into the past.
*
* @param int $value The number of months to add.
* @return static
*/
public function addMonthsWithOverflow($value);
/**
* Add a month with overflow to the instance
*
* @param int $value The number of months to add.
* @return static
*/
public function addMonthWithOverflow($value = 1);
/**
* Remove a month with overflow from the instance
*
* @param int $value The number of months to remove.
* @return static
*/
public function subMonthWithOverflow($value = 1);
/**
* Remove months with overflow from the instance
*
* @param int $value The number of months to remove.
* @return static
*/
public function subMonthsWithOverflow($value);
/**
* Add days to the instance. Positive $value travels forward while
* negative $value travels into the past.
*
* @param int $value The number of days to add.
* @return static
*/
public function addDays($value);
/**
* Add a day to the instance
*
* @param int $value The number of days to add.
* @return static
*/
public function addDay($value = 1);
/**
* Remove a day from the instance
*
* @param int $value The number of days to remove.
* @return static
*/
public function subDay($value = 1);
/**
* Remove days from the instance
*
* @param int $value The number of days to remove.
* @return static
*/
public function subDays($value);
/**
* Add weekdays to the instance. Positive $value travels forward while
* negative $value travels into the past.
*
* @param int $value The number of weekdays to add.
* @return static
*/
public function addWeekdays($value);
/**
* Add a weekday to the instance
*
* @param int $value The number of weekdays to add.
* @return static
*/
public function addWeekday($value = 1);
/**
* Remove a weekday from the instance
*
* @param int $value The number of weekdays to remove.
* @return static
*/
public function subWeekday($value = 1);
/**
* Remove weekdays from the instance
*
* @param int $value The number of weekdays to remove.
* @return static
*/
public function subWeekdays($value);
/**
* Add weeks to the instance. Positive $value travels forward while
* negative $value travels into the past.
*
* @param int $value The number of weeks to add.
* @return static
*/
public function addWeeks($value);
/**
* Add a week to the instance
*
* @param int $value The number of weeks to add.
* @return static
*/
public function addWeek($value = 1);
/**
* Remove a week from the instance
*
* @param int $value The number of weeks to remove.
* @return static
*/
public function subWeek($value = 1);
/**
* Remove weeks to the instance
*
* @param int $value The number of weeks to remove.
* @return static
*/
public function subWeeks($value);
/**
* Add hours to the instance. Positive $value travels forward while
* negative $value travels into the past.
*
* @param int $value The number of hours to add.
* @return static
*/
public function addHours($value);
/**
* Add an hour to the instance
*
* @param int $value The number of hours to add.
* @return static
*/
public function addHour($value = 1);
/**
* Remove an hour from the instance
*
* @param int $value The number of hours to remove.
* @return static
*/
public function subHour($value = 1);
/**
* Remove hours from the instance
*
* @param int $value The number of hours to remove.
* @return static
*/
public function subHours($value);
/**
* Add minutes to the instance. Positive $value travels forward while
* negative $value travels into the past.
*
* @param int $value The number of minutes to add.
* @return static
*/
public function addMinutes($value);
/**
* Add a minute to the instance
*
* @param int $value The number of minutes to add.
* @return static
*/
public function addMinute($value = 1);
/**
* Remove a minute from the instance
*
* @param int $value The number of minutes to remove.
* @return static
*/
public function subMinute($value = 1);
/**
* Remove minutes from the instance
*
* @param int $value The number of minutes to remove.
* @return static
*/
public function subMinutes($value);
/**
* Add seconds to the instance. Positive $value travels forward while
* negative $value travels into the past.
*
* @param int $value The number of seconds to add.
* @return static
*/
public function addSeconds($value);
/**
* Add a second to the instance
*
* @param int $value The number of seconds to add.
* @return static
*/
public function addSecond($value = 1);
/**
* Remove a second from the instance
*
* @param int $value The number of seconds to remove.
* @return static
*/
public function subSecond($value = 1);
/**
* Remove seconds from the instance
*
* @param int $value The number of seconds to remove.
* @return static
*/
public function subSeconds($value);
/**
* Get the difference in a human readable format in the current locale.
*
* When comparing a value in the past to default now:
* 1 hour ago
* 5 months ago
*
* When comparing a value in the future to default now:
* 1 hour from now
* 5 months from now
*
* When comparing a value in the past to another value:
* 1 hour before
* 5 months before
*
* When comparing a value in the future to another value:
* 1 hour after
* 5 months after
*
* @param \Cake\Chronos\ChronosInterface|null $other The datetime to compare with.
* @param bool $absolute Removes time difference modifiers ago, after, etc
* @return string
*/
public function diffForHumans(ChronosInterface $other = null, $absolute = false);
/**
* Get the difference in years
*
* @param ChronosInterface|null $dt The instance to difference from.
* @param bool $abs Get the absolute of the difference
* @return int
*/
public function diffInYears(ChronosInterface $dt = null, $abs = true);
/**
* Get the difference in months
*
* @param ChronosInterface|null $dt The instance to difference from.
* @param bool $abs Get the absolute of the difference
* @return int
*/
public function diffInMonths(ChronosInterface $dt = null, $abs = true);
/**
* Get the difference in weeks
*
* @param ChronosInterface|null $dt The instance to difference from.
* @param bool $abs Get the absolute of the difference
* @return int
*/
public function diffInWeeks(ChronosInterface $dt = null, $abs = true);
/**
* Get the difference in days
*
* @param ChronosInterface|null $dt The instance to difference from.
* @param bool $abs Get the absolute of the difference
* @return int
*/
public function diffInDays(ChronosInterface $dt = null, $abs = true);
/**
* Get the difference in days using a filter callable
*
* @param callable $callback The callback to use for filtering.
* @param ChronosInterface|null $dt The instance to difference from.
* @param bool $abs Get the absolute of the difference
* @return int
*/
public function diffInDaysFiltered(callable $callback, ChronosInterface $dt = null, $abs = true);
/**
* Get the difference in hours using a filter callable
*
* @param callable $callback The callback to use for filtering.
* @param ChronosInterface|null $dt The instance to difference from.
* @param bool $abs Get the absolute of the difference
* @return int
*/
public function diffInHoursFiltered(callable $callback, ChronosInterface $dt = null, $abs = true);
/**
* Get the difference by the given interval using a filter callable
*
* @param ChronosInterval $ci An interval to traverse by
* @param callable $callback The callback to use for filtering.
* @param ChronosInterface|null $dt The instance to difference from.
* @param bool $abs Get the absolute of the difference
* @return int
*/
public function diffFiltered(ChronosInterval $ci, callable $callback, ChronosInterface $dt = null, $abs = true);
/**
* Get the difference in weekdays
*
* @param ChronosInterface|null $dt The instance to difference from.
* @param bool $abs Get the absolute of the difference
* @return int
*/
public function diffInWeekdays(ChronosInterface $dt = null, $abs = true);
/**
* Get the difference in weekend days using a filter
*
* @param ChronosInterface|null $dt The instance to difference from.
* @param bool $abs Get the absolute of the difference
* @return int
*/
public function diffInWeekendDays(ChronosInterface $dt = null, $abs = true);
/**
* Get the difference in hours
*
* @param ChronosInterface|null $dt The instance to difference from.
* @param bool $abs Get the absolute of the difference
* @return int
*/
public function diffInHours(ChronosInterface $dt = null, $abs = true);
/**
* Get the difference in minutes
*
* @param ChronosInterface|null $dt The instance to difference from.
* @param bool $abs Get the absolute of the difference
* @return int
*/
public function diffInMinutes(ChronosInterface $dt = null, $abs = true);
/**
* Get the difference in seconds
*
* @param ChronosInterface|null $dt The instance to difference from.
* @param bool $abs Get the absolute of the difference
* @return int
*/
public function diffInSeconds(ChronosInterface $dt = null, $abs = true);
/**
* The number of seconds since midnight.
*
* @return int
*/
public function secondsSinceMidnight();
/**
* The number of seconds until 23:23:59.
*
* @return int
*/
public function secondsUntilEndOfDay();
/**
* Resets the time to 00:00:00
*
* @return static
*/
public function startOfDay();
/**
* Resets the time to 23:59:59
*
* @return static
*/
public function endOfDay();
/**
* Resets the date to the first day of the month and the time to 00:00:00
*
* @return static
*/
public function startOfMonth();
/**
* Resets the date to end of the month and time to 23:59:59
*
* @return static
*/
public function endOfMonth();
/**
* Resets the date to the first day of the year and the time to 00:00:00
*
* @return static
*/
public function startOfYear();
/**
* Resets the date to end of the year and time to 23:59:59
*
* @return static
*/
public function endOfYear();
/**
* Resets the date to the first day of the decade and the time to 00:00:00
*
* @return static
*/
public function startOfDecade();
/**
* Resets the date to end of the decade and time to 23:59:59
*
* @return static
*/
public function endOfDecade();
/**
* Resets the date to the first day of the century and the time to 00:00:00
*
* @return static
*/
public function startOfCentury();
/**
* Resets the date to end of the century and time to 23:59:59
*
* @return static
*/
public function endOfCentury();
/**
* Resets the date to the first day of week (defined in $weekStartsAt) and the time to 00:00:00
*
* @return static
*/
public function startOfWeek();
/**
* Resets the date to end of week (defined in $weekEndsAt) and time to 23:59:59
*
* @return static
*/
public function endOfWeek();
/**
* Modify to the next occurrence of a given day of the week.
* If no dayOfWeek is provided, modify to the next occurrence
* of the current day of the week. Use the supplied consts
* to indicate the desired dayOfWeek, ex. static::MONDAY.
*
* @param int $dayOfWeek The day of the week to move to.
* @return mixed
*/
public function next($dayOfWeek = null);
/**
* Modify to the previous occurrence of a given day of the week.
* If no dayOfWeek is provided, modify to the previous occurrence
* of the current day of the week. Use the supplied consts
* to indicate the desired dayOfWeek, ex. static::MONDAY.
*
* @param int $dayOfWeek The day of the week to move to.
* @return mixed
*/
public function previous($dayOfWeek = null);
/**
* Modify to the first occurrence of a given day of the week
* in the current month. If no dayOfWeek is provided, modify to the
* first day of the current month. Use the supplied consts
* to indicate the desired dayOfWeek, ex. static::MONDAY.
*
* @param int $dayOfWeek The day of the week to move to.
* @return mixed
*/
public function firstOfMonth($dayOfWeek = null);
/**
* Modify to the last occurrence of a given day of the week
* in the current month. If no dayOfWeek is provided, modify to the
* last day of the current month. Use the supplied consts
* to indicate the desired dayOfWeek, ex. static::MONDAY.
*
* @param int $dayOfWeek The day of the week to move to.
* @return mixed
*/
public function lastOfMonth($dayOfWeek = null);
/**
* Modify to the given occurrence of a given day of the week
* in the current month. If the calculated occurrence is outside the scope
* of the current month, then return false and no modifications are made.
* Use the supplied consts to indicate the desired dayOfWeek, ex. static::MONDAY.
*
* @param int $nth The offset to use.
* @param int $dayOfWeek The day of the week to move to.
* @return mixed
*/
public function nthOfMonth($nth, $dayOfWeek);
/**
* Modify to the first occurrence of a given day of the week
* in the current quarter. If no dayOfWeek is provided, modify to the
* first day of the current quarter. Use the supplied consts
* to indicate the desired dayOfWeek, ex. static::MONDAY.
*
* @param int $dayOfWeek The day of the week to move to.
* @return mixed
*/
public function firstOfQuarter($dayOfWeek = null);
/**
* Modify to the last occurrence of a given day of the week
* in the current quarter. If no dayOfWeek is provided, modify to the
* last day of the current quarter. Use the supplied consts
* to indicate the desired dayOfWeek, ex. static::MONDAY.
*
* @param int $dayOfWeek The day of the week to move to.
* @return mixed
*/
public function lastOfQuarter($dayOfWeek = null);
/**
* Modify to the given occurrence of a given day of the week
* in the current quarter. If the calculated occurrence is outside the scope
* of the current quarter, then return false and no modifications are made.
* Use the supplied consts to indicate the desired dayOfWeek, ex. static::MONDAY.
*
* @param int $nth The offset to use.
* @param int $dayOfWeek The day of the week to move to.
* @return mixed
*/
public function nthOfQuarter($nth, $dayOfWeek);
/**
* Modify to the first occurrence of a given day of the week
* in the current year. If no dayOfWeek is provided, modify to the
* first day of the current year. Use the supplied consts
* to indicate the desired dayOfWeek, ex. static::MONDAY.
*
* @param int $dayOfWeek The day of the week to move to.
* @return mixed
*/
public function firstOfYear($dayOfWeek = null);
/**
* Modify to the last occurrence of a given day of the week
* in the current year. If no dayOfWeek is provided, modify to the
* last day of the current year. Use the supplied consts
* to indicate the desired dayOfWeek, ex. static::MONDAY.
*
* @param int $dayOfWeek The day of the week to move to.
* @return mixed
*/
public function lastOfYear($dayOfWeek = null);
/**
* Modify to the given occurrence of a given day of the week
* in the current year. If the calculated occurrence is outside the scope
* of the current year, then return false and no modifications are made.
* Use the supplied consts to indicate the desired dayOfWeek, ex. static::MONDAY.
*
* @param int $nth The offset to use.
* @param int $dayOfWeek The day of the week to move to.
* @return mixed
*/
public function nthOfYear($nth, $dayOfWeek);
/**
* Modify the current instance to the average of a given instance (default now) and the current instance.
*
* @param ChronosInterface $dt The instance to compare with.
* @return static
*/
public function average(ChronosInterface $dt = null);
/**
* Check if its the birthday. Compares the date/month values of the two dates.
*
* @param ChronosInterface $dt The instance to compare with.
* @return bool
*/
public function isBirthday(ChronosInterface $dt);
/**
* Returns true this instance happened within the specified interval
*
* @param string|int $timeInterval the numeric value with space then time type.
* Example of valid types: 6 hours, 2 days, 1 minute.
* @return bool
*/
public function wasWithinLast($timeInterval);
/**
* Returns true this instance will happen within the specified interval
*
* @param string|int $timeInterval the numeric value with space then time type.
* Example of valid types: 6 hours, 2 days, 1 minute.
* @return bool
*/
public function isWithinNext($timeInterval);
/**
* Check if instance of ChronosInterface is mutable.
*
* @return bool
*/
public function isMutable();
}