Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/upload-pages-artifact from 1 to 3 #582

Open
wants to merge 2 commits into
base: 2.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: "make website"

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: 'website/build'

Expand Down
2 changes: 1 addition & 1 deletion examples/example1.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion examples/example2.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion examples/example3.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/Collection/Events.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/Collection/EventsArray.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/Collection/EventsGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/Entity/Attendee.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/Entity/Calendar.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down Expand Up @@ -44,7 +44,7 @@
*/
private function ensureEventsObject($events = []): Events
{
if ($events instanceof Events) {

Check warning on line 47 in src/Domain/Entity/Calendar.php

View workflow job for this annotation

GitHub Actions / test (8.2)

Escaped Mutant for Mutator "InstanceOf_": --- Original +++ New @@ @@ */ private function ensureEventsObject($events = []) : Events { - if ($events instanceof Events) { + if (false) { return $events; } if (is_array($events)) {

Check warning on line 47 in src/Domain/Entity/Calendar.php

View workflow job for this annotation

GitHub Actions / test (8.3)

Escaped Mutant for Mutator "InstanceOf_": --- Original +++ New @@ @@ */ private function ensureEventsObject($events = []) : Events { - if ($events instanceof Events) { + if (false) { return $events; } if (is_array($events)) {
return $events;
}

Expand All @@ -52,7 +52,7 @@
return new EventsArray($events);
}

if ($events instanceof Iterator) {

Check warning on line 55 in src/Domain/Entity/Calendar.php

View workflow job for this annotation

GitHub Actions / test (8.2)

Escaped Mutant for Mutator "InstanceOf_": --- Original +++ New @@ @@ if (is_array($events)) { return new EventsArray($events); } - if ($events instanceof Iterator) { + if (true) { return new EventsGenerator($events); } throw new InvalidArgumentException('$events must be an array, an object implementing Iterator or an instance of Events.');

Check warning on line 55 in src/Domain/Entity/Calendar.php

View workflow job for this annotation

GitHub Actions / test (8.3)

Escaped Mutant for Mutator "InstanceOf_": --- Original +++ New @@ @@ if (is_array($events)) { return new EventsArray($events); } - if ($events instanceof Iterator) { + if (true) { return new EventsGenerator($events); } throw new InvalidArgumentException('$events must be an array, an object implementing Iterator or an instance of Events.');
return new EventsGenerator($events);
}

Expand Down
2 changes: 1 addition & 1 deletion src/Domain/Entity/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/Entity/TimeZone.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down Expand Up @@ -37,7 +37,7 @@
DateTimeInterface $beginDateTime = null,
DateTimeInterface $endDateTime = null
): self {
if ($beginDateTime === null || $endDateTime === null) {

Check warning on line 40 in src/Domain/Entity/TimeZone.php

View workflow job for this annotation

GitHub Actions / test (8.2)

Escaped Mutant for Mutator "Identical": --- Original +++ New @@ @@ } public static function createFromPhpDateTimeZone(PhpDateTimeZone $phpDateTimeZone, DateTimeInterface $beginDateTime = null, DateTimeInterface $endDateTime = null) : self { - if ($beginDateTime === null || $endDateTime === null) { + if ($beginDateTime !== null || $endDateTime === null) { trigger_deprecation('eluceo/ical', '2.1.0', 'Relying on the default values for begin and end date when calling TimeZone::createFromPhpDateTimeZone() is deprecated. Please provide a begin and an end date.'); } $transitions = $phpDateTimeZone->getTransitions($beginDateTime ? $beginDateTime->getTimestamp() : (new DateTimeImmutable('0000-01-01 12:00:00'))->getTimestamp(), $endDateTime ? $endDateTime->getTimestamp() : PHP_INT_MAX);

Check warning on line 40 in src/Domain/Entity/TimeZone.php

View workflow job for this annotation

GitHub Actions / test (8.2)

Escaped Mutant for Mutator "Identical": --- Original +++ New @@ @@ } public static function createFromPhpDateTimeZone(PhpDateTimeZone $phpDateTimeZone, DateTimeInterface $beginDateTime = null, DateTimeInterface $endDateTime = null) : self { - if ($beginDateTime === null || $endDateTime === null) { + if ($beginDateTime === null || $endDateTime !== null) { trigger_deprecation('eluceo/ical', '2.1.0', 'Relying on the default values for begin and end date when calling TimeZone::createFromPhpDateTimeZone() is deprecated. Please provide a begin and an end date.'); } $transitions = $phpDateTimeZone->getTransitions($beginDateTime ? $beginDateTime->getTimestamp() : (new DateTimeImmutable('0000-01-01 12:00:00'))->getTimestamp(), $endDateTime ? $endDateTime->getTimestamp() : PHP_INT_MAX);

Check warning on line 40 in src/Domain/Entity/TimeZone.php

View workflow job for this annotation

GitHub Actions / test (8.2)

Escaped Mutant for Mutator "LogicalOr": --- Original +++ New @@ @@ } public static function createFromPhpDateTimeZone(PhpDateTimeZone $phpDateTimeZone, DateTimeInterface $beginDateTime = null, DateTimeInterface $endDateTime = null) : self { - if ($beginDateTime === null || $endDateTime === null) { + if ($beginDateTime === null && $endDateTime === null) { trigger_deprecation('eluceo/ical', '2.1.0', 'Relying on the default values for begin and end date when calling TimeZone::createFromPhpDateTimeZone() is deprecated. Please provide a begin and an end date.'); } $transitions = $phpDateTimeZone->getTransitions($beginDateTime ? $beginDateTime->getTimestamp() : (new DateTimeImmutable('0000-01-01 12:00:00'))->getTimestamp(), $endDateTime ? $endDateTime->getTimestamp() : PHP_INT_MAX);

Check warning on line 40 in src/Domain/Entity/TimeZone.php

View workflow job for this annotation

GitHub Actions / test (8.2)

Escaped Mutant for Mutator "LogicalOrAllSubExprNegation": --- Original +++ New @@ @@ } public static function createFromPhpDateTimeZone(PhpDateTimeZone $phpDateTimeZone, DateTimeInterface $beginDateTime = null, DateTimeInterface $endDateTime = null) : self { - if ($beginDateTime === null || $endDateTime === null) { + if (!($beginDateTime === null) || !($endDateTime === null)) { trigger_deprecation('eluceo/ical', '2.1.0', 'Relying on the default values for begin and end date when calling TimeZone::createFromPhpDateTimeZone() is deprecated. Please provide a begin and an end date.'); } $transitions = $phpDateTimeZone->getTransitions($beginDateTime ? $beginDateTime->getTimestamp() : (new DateTimeImmutable('0000-01-01 12:00:00'))->getTimestamp(), $endDateTime ? $endDateTime->getTimestamp() : PHP_INT_MAX);

Check warning on line 40 in src/Domain/Entity/TimeZone.php

View workflow job for this annotation

GitHub Actions / test (8.2)

Escaped Mutant for Mutator "LogicalOrNegation": --- Original +++ New @@ @@ } public static function createFromPhpDateTimeZone(PhpDateTimeZone $phpDateTimeZone, DateTimeInterface $beginDateTime = null, DateTimeInterface $endDateTime = null) : self { - if ($beginDateTime === null || $endDateTime === null) { + if (!($beginDateTime === null || $endDateTime === null)) { trigger_deprecation('eluceo/ical', '2.1.0', 'Relying on the default values for begin and end date when calling TimeZone::createFromPhpDateTimeZone() is deprecated. Please provide a begin and an end date.'); } $transitions = $phpDateTimeZone->getTransitions($beginDateTime ? $beginDateTime->getTimestamp() : (new DateTimeImmutable('0000-01-01 12:00:00'))->getTimestamp(), $endDateTime ? $endDateTime->getTimestamp() : PHP_INT_MAX);

Check warning on line 40 in src/Domain/Entity/TimeZone.php

View workflow job for this annotation

GitHub Actions / test (8.3)

Escaped Mutant for Mutator "Identical": --- Original +++ New @@ @@ } public static function createFromPhpDateTimeZone(PhpDateTimeZone $phpDateTimeZone, DateTimeInterface $beginDateTime = null, DateTimeInterface $endDateTime = null) : self { - if ($beginDateTime === null || $endDateTime === null) { + if ($beginDateTime !== null || $endDateTime === null) { trigger_deprecation('eluceo/ical', '2.1.0', 'Relying on the default values for begin and end date when calling TimeZone::createFromPhpDateTimeZone() is deprecated. Please provide a begin and an end date.'); } $transitions = $phpDateTimeZone->getTransitions($beginDateTime ? $beginDateTime->getTimestamp() : (new DateTimeImmutable('0000-01-01 12:00:00'))->getTimestamp(), $endDateTime ? $endDateTime->getTimestamp() : PHP_INT_MAX);

Check warning on line 40 in src/Domain/Entity/TimeZone.php

View workflow job for this annotation

GitHub Actions / test (8.3)

Escaped Mutant for Mutator "Identical": --- Original +++ New @@ @@ } public static function createFromPhpDateTimeZone(PhpDateTimeZone $phpDateTimeZone, DateTimeInterface $beginDateTime = null, DateTimeInterface $endDateTime = null) : self { - if ($beginDateTime === null || $endDateTime === null) { + if ($beginDateTime === null || $endDateTime !== null) { trigger_deprecation('eluceo/ical', '2.1.0', 'Relying on the default values for begin and end date when calling TimeZone::createFromPhpDateTimeZone() is deprecated. Please provide a begin and an end date.'); } $transitions = $phpDateTimeZone->getTransitions($beginDateTime ? $beginDateTime->getTimestamp() : (new DateTimeImmutable('0000-01-01 12:00:00'))->getTimestamp(), $endDateTime ? $endDateTime->getTimestamp() : PHP_INT_MAX);

Check warning on line 40 in src/Domain/Entity/TimeZone.php

View workflow job for this annotation

GitHub Actions / test (8.3)

Escaped Mutant for Mutator "LogicalOr": --- Original +++ New @@ @@ } public static function createFromPhpDateTimeZone(PhpDateTimeZone $phpDateTimeZone, DateTimeInterface $beginDateTime = null, DateTimeInterface $endDateTime = null) : self { - if ($beginDateTime === null || $endDateTime === null) { + if ($beginDateTime === null && $endDateTime === null) { trigger_deprecation('eluceo/ical', '2.1.0', 'Relying on the default values for begin and end date when calling TimeZone::createFromPhpDateTimeZone() is deprecated. Please provide a begin and an end date.'); } $transitions = $phpDateTimeZone->getTransitions($beginDateTime ? $beginDateTime->getTimestamp() : (new DateTimeImmutable('0000-01-01 12:00:00'))->getTimestamp(), $endDateTime ? $endDateTime->getTimestamp() : PHP_INT_MAX);

Check warning on line 40 in src/Domain/Entity/TimeZone.php

View workflow job for this annotation

GitHub Actions / test (8.3)

Escaped Mutant for Mutator "LogicalOrAllSubExprNegation": --- Original +++ New @@ @@ } public static function createFromPhpDateTimeZone(PhpDateTimeZone $phpDateTimeZone, DateTimeInterface $beginDateTime = null, DateTimeInterface $endDateTime = null) : self { - if ($beginDateTime === null || $endDateTime === null) { + if (!($beginDateTime === null) || !($endDateTime === null)) { trigger_deprecation('eluceo/ical', '2.1.0', 'Relying on the default values for begin and end date when calling TimeZone::createFromPhpDateTimeZone() is deprecated. Please provide a begin and an end date.'); } $transitions = $phpDateTimeZone->getTransitions($beginDateTime ? $beginDateTime->getTimestamp() : (new DateTimeImmutable('0000-01-01 12:00:00'))->getTimestamp(), $endDateTime ? $endDateTime->getTimestamp() : PHP_INT_MAX);

Check warning on line 40 in src/Domain/Entity/TimeZone.php

View workflow job for this annotation

GitHub Actions / test (8.3)

Escaped Mutant for Mutator "LogicalOrNegation": --- Original +++ New @@ @@ } public static function createFromPhpDateTimeZone(PhpDateTimeZone $phpDateTimeZone, DateTimeInterface $beginDateTime = null, DateTimeInterface $endDateTime = null) : self { - if ($beginDateTime === null || $endDateTime === null) { + if (!($beginDateTime === null || $endDateTime === null)) { trigger_deprecation('eluceo/ical', '2.1.0', 'Relying on the default values for begin and end date when calling TimeZone::createFromPhpDateTimeZone() is deprecated. Please provide a begin and an end date.'); } $transitions = $phpDateTimeZone->getTransitions($beginDateTime ? $beginDateTime->getTimestamp() : (new DateTimeImmutable('0000-01-01 12:00:00'))->getTimestamp(), $endDateTime ? $endDateTime->getTimestamp() : PHP_INT_MAX);
trigger_deprecation('eluceo/ical', '2.1.0', 'Relying on the default values for begin and end date when calling TimeZone::createFromPhpDateTimeZone() is deprecated. Please provide a begin and an end date.');
}

Expand All @@ -56,7 +56,7 @@
$localFromDateTime = $fromDateTime->setTimezone($phpDateTimeZone);

$timeZone->addTransition(new TimeZoneTransition(
$transitionArray['isdst'] ? TimeZoneTransitionType::DAYLIGHT() : TimeZoneTransitionType::STANDARD(),

Check warning on line 59 in src/Domain/Entity/TimeZone.php

View workflow job for this annotation

GitHub Actions / test (8.2)

Escaped Mutant for Mutator "Ternary": --- Original +++ New @@ @@ $fromDateTime = DateTimeImmutable::createFromFormat(DateTimeImmutable::ISO8601, $transitionArray['time']); assert($fromDateTime instanceof DateTimeImmutable, $transitionArray['time']); $localFromDateTime = $fromDateTime->setTimezone($phpDateTimeZone); - $timeZone->addTransition(new TimeZoneTransition($transitionArray['isdst'] ? TimeZoneTransitionType::DAYLIGHT() : TimeZoneTransitionType::STANDARD(), $localFromDateTime, $phpDateTimeZone->getOffset($fromDateTime->sub(new DateInterval('PT1S'))), $transitionArray['offset'], $transitionArray['abbr'])); + $timeZone->addTransition(new TimeZoneTransition($transitionArray['isdst'] ? TimeZoneTransitionType::STANDARD() : TimeZoneTransitionType::DAYLIGHT(), $localFromDateTime, $phpDateTimeZone->getOffset($fromDateTime->sub(new DateInterval('PT1S'))), $transitionArray['offset'], $transitionArray['abbr'])); } return $timeZone; }

Check warning on line 59 in src/Domain/Entity/TimeZone.php

View workflow job for this annotation

GitHub Actions / test (8.3)

Escaped Mutant for Mutator "Ternary": --- Original +++ New @@ @@ $fromDateTime = DateTimeImmutable::createFromFormat(DateTimeImmutable::ISO8601, $transitionArray['time']); assert($fromDateTime instanceof DateTimeImmutable, $transitionArray['time']); $localFromDateTime = $fromDateTime->setTimezone($phpDateTimeZone); - $timeZone->addTransition(new TimeZoneTransition($transitionArray['isdst'] ? TimeZoneTransitionType::DAYLIGHT() : TimeZoneTransitionType::STANDARD(), $localFromDateTime, $phpDateTimeZone->getOffset($fromDateTime->sub(new DateInterval('PT1S'))), $transitionArray['offset'], $transitionArray['abbr'])); + $timeZone->addTransition(new TimeZoneTransition($transitionArray['isdst'] ? TimeZoneTransitionType::STANDARD() : TimeZoneTransitionType::DAYLIGHT(), $localFromDateTime, $phpDateTimeZone->getOffset($fromDateTime->sub(new DateInterval('PT1S'))), $transitionArray['offset'], $transitionArray['abbr'])); } return $timeZone; }
$localFromDateTime,
$phpDateTimeZone->getOffset($fromDateTime->sub(new DateInterval('PT1S'))),
$transitionArray['offset'],
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/Enum/CalendarUserType.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down Expand Up @@ -41,6 +41,6 @@

public static function UNKNOWN(): self
{
return self::$unknown ??= new self();

Check warning on line 44 in src/Domain/Enum/CalendarUserType.php

View workflow job for this annotation

GitHub Actions / test (8.2)

Escaped Mutant for Mutator "AssignCoalesce": --- Original +++ New @@ @@ } public static function UNKNOWN() : self { - return self::$unknown ??= new self(); + return self::$unknown = new self(); } }

Check warning on line 44 in src/Domain/Enum/CalendarUserType.php

View workflow job for this annotation

GitHub Actions / test (8.3)

Escaped Mutant for Mutator "AssignCoalesce": --- Original +++ New @@ @@ } public static function UNKNOWN() : self { - return self::$unknown ??= new self(); + return self::$unknown = new self(); } }
}
}
2 changes: 1 addition & 1 deletion src/Domain/Enum/EventStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/Enum/ParticipationStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/Enum/RoleType.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/Enum/TimeZoneTransitionType.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand All @@ -23,6 +23,6 @@

public static function STANDARD(): self
{
return self::$standard ??= new TimeZoneTransitionType();

Check warning on line 26 in src/Domain/Enum/TimeZoneTransitionType.php

View workflow job for this annotation

GitHub Actions / test (8.2)

Escaped Mutant for Mutator "AssignCoalesce": --- Original +++ New @@ @@ } public static function STANDARD() : self { - return self::$standard ??= new TimeZoneTransitionType(); + return self::$standard = new TimeZoneTransitionType(); } }

Check warning on line 26 in src/Domain/Enum/TimeZoneTransitionType.php

View workflow job for this annotation

GitHub Actions / test (8.3)

Escaped Mutant for Mutator "AssignCoalesce": --- Original +++ New @@ @@ } public static function STANDARD() : self { - return self::$standard ??= new TimeZoneTransitionType(); + return self::$standard = new TimeZoneTransitionType(); } }
}
}
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Alarm.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Alarm/AbsoluteDateTimeTrigger.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Alarm/Action.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Alarm/AudioAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Alarm/DisplayAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Alarm/EmailAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Alarm/RelativeTrigger.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Alarm/Trigger.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Attachment.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/BinaryContent.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Category.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Date.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/DateTime.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/EmailAddress.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/GeographicPosition.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Location.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Member.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/MultiDay.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Occurrence.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Organizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/PointInTime.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/SingleDay.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/TimeSpan.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/TimeZoneTransition.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Timestamp.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/UniqueIdentifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Domain/ValueObject/Uri.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
2 changes: 1 addition & 1 deletion src/Presentation/Component.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* This file is part of the eluceo/iCal package.
*
* (c) 2023 Markus Poerschke <[email protected]>
* (c) 2024 Markus Poerschke <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
Expand Down
Loading
Loading