Skip to content

Commit 80bd29b

Browse files
committed
PHP 8.3
1 parent 1c4bae8 commit 80bd29b

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.2, 8.1, 8.0]
11+
php: [8.3, 8.2, 8.1, 8.0]
1212
dependency-version: [prefer-stable]
1313
os: [ubuntu-latest, windows-latest]
1414

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"psr-4": {"ICalendarOrg\\": "src/ICalendarOrg/"}
3232
},
3333
"require": {
34-
"php": ">=7.4 <8.3"
34+
"php": ">=7.4 <8.4"
3535
},
3636
"require-dev": {
3737
"phpunit/phpunit": "<11.0",

src/ICalendarOrg/ZCRecurringDate.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ class ZCRecurringDate
8080
/**
8181
* repeating frequency type (i.e. 'y' for yearly, 'm' for monthly)
8282
*
83-
* @var string
8483
*/
8584
public ?string $freq = null;
8685

@@ -93,7 +92,6 @@ class ZCRecurringDate
9392
/**
9493
* repeat mode ('c': count, 'u': until)
9594
*
96-
* @var string
9795
*/
9896
public ?string $repeatmode = null;
9997

@@ -106,14 +104,12 @@ class ZCRecurringDate
106104
/**
107105
* start date in Unix Timestamp format (local timezone)
108106
*
109-
* @var int
110107
*/
111108
public ?int $startdate = null;
112109

113110
/**
114111
* timezone of event (using PHP timezones)
115112
*
116-
* @var string
117113
*/
118114
public ?string $tzid = null;
119115

src/ICalendarOrg/ZDateHelper.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,7 @@ public static function getAbsDate(string $date, string $rdate = '') : string
273273

274274
break;
275275
}
276+
276277
// for '-' values, move to start of day , otherwise, move to end of day
277278
if ('-' == $rvalue[0])
278279
{

0 commit comments

Comments
 (0)