diff --git a/LICENSE b/LICENSE index 79909767..6f279ef4 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2012-2020 Markus Poerschke +Copyright (c) 2012-2021 Markus Poerschke Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Makefile b/Makefile index 2b3bc3e7..016fcf48 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +export XDEBUG_MODE=coverage + MAKEFLAGS += --warn-undefined-variables SHELL := bash PATH := $(CURDIR)/vendor/bin:$(PATH) diff --git a/README.md b/README.md index 78e4479a..160a4800 100644 --- a/README.md +++ b/README.md @@ -125,24 +125,4 @@ echo $calendarComponent; ## License -This package is released under the **MIT license**. - -Copyright (c) 2020 Markus Poerschke - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is furnished -to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +This package is released under the [**MIT license**](LICENSE). diff --git a/examples/example1.php b/examples/example1.php index 57216f4a..d7c7c28b 100644 --- a/examples/example1.php +++ b/examples/example1.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/examples/example2.php b/examples/example2.php index 1147f0ce..78cf1405 100644 --- a/examples/example2.php +++ b/examples/example2.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/examples/example3.php b/examples/example3.php index 3d2063f4..9d7ec5ea 100644 --- a/examples/example3.php +++ b/examples/example3.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/Collection/Events.php b/src/Domain/Collection/Events.php index 8d56a7ff..2d6906af 100644 --- a/src/Domain/Collection/Events.php +++ b/src/Domain/Collection/Events.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/Collection/EventsArray.php b/src/Domain/Collection/EventsArray.php index 1fe9ef9f..37759144 100644 --- a/src/Domain/Collection/EventsArray.php +++ b/src/Domain/Collection/EventsArray.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/Collection/EventsGenerator.php b/src/Domain/Collection/EventsGenerator.php index b2d20e67..30103fb1 100644 --- a/src/Domain/Collection/EventsGenerator.php +++ b/src/Domain/Collection/EventsGenerator.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/Entity/Calendar.php b/src/Domain/Entity/Calendar.php index a2ef7f4e..4a6fa023 100644 --- a/src/Domain/Entity/Calendar.php +++ b/src/Domain/Entity/Calendar.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/Entity/Event.php b/src/Domain/Entity/Event.php index be8d8093..d356928a 100644 --- a/src/Domain/Entity/Event.php +++ b/src/Domain/Entity/Event.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/Alarm.php b/src/Domain/ValueObject/Alarm.php index a3769c2a..3c14aaf8 100644 --- a/src/Domain/ValueObject/Alarm.php +++ b/src/Domain/ValueObject/Alarm.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/Alarm/AbsoluteDateTimeTrigger.php b/src/Domain/ValueObject/Alarm/AbsoluteDateTimeTrigger.php index afa5c28a..9f6d1c88 100644 --- a/src/Domain/ValueObject/Alarm/AbsoluteDateTimeTrigger.php +++ b/src/Domain/ValueObject/Alarm/AbsoluteDateTimeTrigger.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/Alarm/Action.php b/src/Domain/ValueObject/Alarm/Action.php index a91c8d5d..5eacebde 100644 --- a/src/Domain/ValueObject/Alarm/Action.php +++ b/src/Domain/ValueObject/Alarm/Action.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/Alarm/AudioAction.php b/src/Domain/ValueObject/Alarm/AudioAction.php index 9a2d0598..929166d7 100644 --- a/src/Domain/ValueObject/Alarm/AudioAction.php +++ b/src/Domain/ValueObject/Alarm/AudioAction.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/Alarm/DisplayAction.php b/src/Domain/ValueObject/Alarm/DisplayAction.php index bbe54745..f48c288e 100644 --- a/src/Domain/ValueObject/Alarm/DisplayAction.php +++ b/src/Domain/ValueObject/Alarm/DisplayAction.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/Alarm/EmailAction.php b/src/Domain/ValueObject/Alarm/EmailAction.php index c44d242d..2402acac 100644 --- a/src/Domain/ValueObject/Alarm/EmailAction.php +++ b/src/Domain/ValueObject/Alarm/EmailAction.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/Alarm/RelativeTrigger.php b/src/Domain/ValueObject/Alarm/RelativeTrigger.php index 18e3ccf6..cc0e5aaa 100644 --- a/src/Domain/ValueObject/Alarm/RelativeTrigger.php +++ b/src/Domain/ValueObject/Alarm/RelativeTrigger.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/Alarm/Trigger.php b/src/Domain/ValueObject/Alarm/Trigger.php index 625d43f2..ad1c4c75 100644 --- a/src/Domain/ValueObject/Alarm/Trigger.php +++ b/src/Domain/ValueObject/Alarm/Trigger.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/Attachment.php b/src/Domain/ValueObject/Attachment.php index ebafb43f..ff25992a 100644 --- a/src/Domain/ValueObject/Attachment.php +++ b/src/Domain/ValueObject/Attachment.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/BinaryContent.php b/src/Domain/ValueObject/BinaryContent.php index fd86ec12..fb1fc45f 100644 --- a/src/Domain/ValueObject/BinaryContent.php +++ b/src/Domain/ValueObject/BinaryContent.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/Date.php b/src/Domain/ValueObject/Date.php index 5c12a7ba..7d15496d 100644 --- a/src/Domain/ValueObject/Date.php +++ b/src/Domain/ValueObject/Date.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/DateTime.php b/src/Domain/ValueObject/DateTime.php index d8ea0cad..46b48fad 100644 --- a/src/Domain/ValueObject/DateTime.php +++ b/src/Domain/ValueObject/DateTime.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/GeographicPosition.php b/src/Domain/ValueObject/GeographicPosition.php index 7a25de18..8ceb00c6 100644 --- a/src/Domain/ValueObject/GeographicPosition.php +++ b/src/Domain/ValueObject/GeographicPosition.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/Location.php b/src/Domain/ValueObject/Location.php index ee5490c2..8f76fd0c 100644 --- a/src/Domain/ValueObject/Location.php +++ b/src/Domain/ValueObject/Location.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/MultiDay.php b/src/Domain/ValueObject/MultiDay.php index f63ab6eb..6ade42a3 100644 --- a/src/Domain/ValueObject/MultiDay.php +++ b/src/Domain/ValueObject/MultiDay.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/Occurrence.php b/src/Domain/ValueObject/Occurrence.php index 5a76593b..9ee8c4fa 100644 --- a/src/Domain/ValueObject/Occurrence.php +++ b/src/Domain/ValueObject/Occurrence.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/PointInTime.php b/src/Domain/ValueObject/PointInTime.php index 9a95eb4e..fc9a6c4b 100644 --- a/src/Domain/ValueObject/PointInTime.php +++ b/src/Domain/ValueObject/PointInTime.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/SingleDay.php b/src/Domain/ValueObject/SingleDay.php index d2639c93..50ddd76e 100644 --- a/src/Domain/ValueObject/SingleDay.php +++ b/src/Domain/ValueObject/SingleDay.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/TimeSpan.php b/src/Domain/ValueObject/TimeSpan.php index 1564e93d..f4044ab3 100644 --- a/src/Domain/ValueObject/TimeSpan.php +++ b/src/Domain/ValueObject/TimeSpan.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/Timestamp.php b/src/Domain/ValueObject/Timestamp.php index 3d297703..d17d1268 100644 --- a/src/Domain/ValueObject/Timestamp.php +++ b/src/Domain/ValueObject/Timestamp.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/UniqueIdentifier.php b/src/Domain/ValueObject/UniqueIdentifier.php index f3dad0e0..e88b5429 100644 --- a/src/Domain/ValueObject/UniqueIdentifier.php +++ b/src/Domain/ValueObject/UniqueIdentifier.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Domain/ValueObject/Uri.php b/src/Domain/ValueObject/Uri.php index 64161a37..1a959283 100644 --- a/src/Domain/ValueObject/Uri.php +++ b/src/Domain/ValueObject/Uri.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/Component.php b/src/Presentation/Component.php index ad230d5b..8a50ecb8 100644 --- a/src/Presentation/Component.php +++ b/src/Presentation/Component.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/Component/Property.php b/src/Presentation/Component/Property.php index 167b4031..c2794a10 100644 --- a/src/Presentation/Component/Property.php +++ b/src/Presentation/Component/Property.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/Component/Property/Parameter.php b/src/Presentation/Component/Property/Parameter.php index d11f1ef5..4e1f7088 100644 --- a/src/Presentation/Component/Property/Parameter.php +++ b/src/Presentation/Component/Property/Parameter.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/Component/Property/Value.php b/src/Presentation/Component/Property/Value.php index 5451ac54..32a95421 100644 --- a/src/Presentation/Component/Property/Value.php +++ b/src/Presentation/Component/Property/Value.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/Component/Property/Value/BinaryValue.php b/src/Presentation/Component/Property/Value/BinaryValue.php index ea8f46e7..1e408107 100644 --- a/src/Presentation/Component/Property/Value/BinaryValue.php +++ b/src/Presentation/Component/Property/Value/BinaryValue.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/Component/Property/Value/DateTimeValue.php b/src/Presentation/Component/Property/Value/DateTimeValue.php index d8de6b7e..c691810b 100644 --- a/src/Presentation/Component/Property/Value/DateTimeValue.php +++ b/src/Presentation/Component/Property/Value/DateTimeValue.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/Component/Property/Value/DateValue.php b/src/Presentation/Component/Property/Value/DateValue.php index 04a8edd5..fa92388c 100644 --- a/src/Presentation/Component/Property/Value/DateValue.php +++ b/src/Presentation/Component/Property/Value/DateValue.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/Component/Property/Value/DurationValue.php b/src/Presentation/Component/Property/Value/DurationValue.php index cb53e6d7..4be3bab8 100644 --- a/src/Presentation/Component/Property/Value/DurationValue.php +++ b/src/Presentation/Component/Property/Value/DurationValue.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/Component/Property/Value/GeoValue.php b/src/Presentation/Component/Property/Value/GeoValue.php index 98908fe5..f76b4360 100644 --- a/src/Presentation/Component/Property/Value/GeoValue.php +++ b/src/Presentation/Component/Property/Value/GeoValue.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/Component/Property/Value/IntegerValue.php b/src/Presentation/Component/Property/Value/IntegerValue.php index a9d7e834..2655ecee 100644 --- a/src/Presentation/Component/Property/Value/IntegerValue.php +++ b/src/Presentation/Component/Property/Value/IntegerValue.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/Component/Property/Value/ListValue.php b/src/Presentation/Component/Property/Value/ListValue.php index c9d02d32..c14b7e0e 100644 --- a/src/Presentation/Component/Property/Value/ListValue.php +++ b/src/Presentation/Component/Property/Value/ListValue.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/Component/Property/Value/TextValue.php b/src/Presentation/Component/Property/Value/TextValue.php index 62082927..4c463c22 100644 --- a/src/Presentation/Component/Property/Value/TextValue.php +++ b/src/Presentation/Component/Property/Value/TextValue.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/Component/Property/Value/UriValue.php b/src/Presentation/Component/Property/Value/UriValue.php index f730b03c..50a05b09 100644 --- a/src/Presentation/Component/Property/Value/UriValue.php +++ b/src/Presentation/Component/Property/Value/UriValue.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/ContentLine.php b/src/Presentation/ContentLine.php index 69438eef..acece72e 100644 --- a/src/Presentation/ContentLine.php +++ b/src/Presentation/ContentLine.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/Factory/AlarmFactory.php b/src/Presentation/Factory/AlarmFactory.php index 58ffd3b4..4de48689 100644 --- a/src/Presentation/Factory/AlarmFactory.php +++ b/src/Presentation/Factory/AlarmFactory.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/Factory/CalendarFactory.php b/src/Presentation/Factory/CalendarFactory.php index 60025ace..2e616fc8 100644 --- a/src/Presentation/Factory/CalendarFactory.php +++ b/src/Presentation/Factory/CalendarFactory.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Presentation/Factory/EventFactory.php b/src/Presentation/Factory/EventFactory.php index d1534528..12e7fd8d 100644 --- a/src/Presentation/Factory/EventFactory.php +++ b/src/Presentation/Factory/EventFactory.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/src/Util/DateTimeImmutableFactory.php b/src/Util/DateTimeImmutableFactory.php index 547f7b32..2db98f29 100644 --- a/src/Util/DateTimeImmutableFactory.php +++ b/src/Util/DateTimeImmutableFactory.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/tests/Integration/EventsGeneratorTest.php b/tests/Integration/EventsGeneratorTest.php index 3bf871c0..0a0de412 100644 --- a/tests/Integration/EventsGeneratorTest.php +++ b/tests/Integration/EventsGeneratorTest.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/tests/Unit/Domain/ValueObject/GeographicPositionTest.php b/tests/Unit/Domain/ValueObject/GeographicPositionTest.php index bcffc926..d53339bb 100644 --- a/tests/Unit/Domain/ValueObject/GeographicPositionTest.php +++ b/tests/Unit/Domain/ValueObject/GeographicPositionTest.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/tests/Unit/Presentation/Component/Property/ParameterTest.php b/tests/Unit/Presentation/Component/Property/ParameterTest.php index ad38711d..1858e563 100644 --- a/tests/Unit/Presentation/Component/Property/ParameterTest.php +++ b/tests/Unit/Presentation/Component/Property/ParameterTest.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/tests/Unit/Presentation/Component/Property/Value/DurationValueTest.php b/tests/Unit/Presentation/Component/Property/Value/DurationValueTest.php index 5f92fa63..286d4fae 100644 --- a/tests/Unit/Presentation/Component/Property/Value/DurationValueTest.php +++ b/tests/Unit/Presentation/Component/Property/Value/DurationValueTest.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/tests/Unit/Presentation/Component/Property/Value/IntegerValueTest.php b/tests/Unit/Presentation/Component/Property/Value/IntegerValueTest.php index 6b2bb490..d95a42b8 100644 --- a/tests/Unit/Presentation/Component/Property/Value/IntegerValueTest.php +++ b/tests/Unit/Presentation/Component/Property/Value/IntegerValueTest.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/tests/Unit/Presentation/Component/Property/Value/ListValueTest.php b/tests/Unit/Presentation/Component/Property/Value/ListValueTest.php index 53064428..0ab4854b 100644 --- a/tests/Unit/Presentation/Component/Property/Value/ListValueTest.php +++ b/tests/Unit/Presentation/Component/Property/Value/ListValueTest.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/tests/Unit/Presentation/Component/Property/Value/TextValueTest.php b/tests/Unit/Presentation/Component/Property/Value/TextValueTest.php index ffdf0cae..992ef3e6 100644 --- a/tests/Unit/Presentation/Component/Property/Value/TextValueTest.php +++ b/tests/Unit/Presentation/Component/Property/Value/TextValueTest.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/tests/Unit/Presentation/Component/PropertyTest.php b/tests/Unit/Presentation/Component/PropertyTest.php index b987c9c2..1a85684f 100644 --- a/tests/Unit/Presentation/Component/PropertyTest.php +++ b/tests/Unit/Presentation/Component/PropertyTest.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/tests/Unit/Presentation/ComponentTest.php b/tests/Unit/Presentation/ComponentTest.php index c2b8fafb..d0a7a534 100644 --- a/tests/Unit/Presentation/ComponentTest.php +++ b/tests/Unit/Presentation/ComponentTest.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/tests/Unit/Presentation/ContentLineTest.php b/tests/Unit/Presentation/ContentLineTest.php index b61ba5d9..e5510ba1 100644 --- a/tests/Unit/Presentation/ContentLineTest.php +++ b/tests/Unit/Presentation/ContentLineTest.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/tests/Unit/Presentation/Factory/AlarmFactoryTest.php b/tests/Unit/Presentation/Factory/AlarmFactoryTest.php index c29b87a3..85be7492 100644 --- a/tests/Unit/Presentation/Factory/AlarmFactoryTest.php +++ b/tests/Unit/Presentation/Factory/AlarmFactoryTest.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/tests/Unit/Presentation/Factory/CalendarFactoryTest.php b/tests/Unit/Presentation/Factory/CalendarFactoryTest.php index 7458b412..e94c14bb 100644 --- a/tests/Unit/Presentation/Factory/CalendarFactoryTest.php +++ b/tests/Unit/Presentation/Factory/CalendarFactoryTest.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/tests/Unit/Presentation/Factory/EventFactoryTest.php b/tests/Unit/Presentation/Factory/EventFactoryTest.php index 26bb5d9d..3c23f1c7 100644 --- a/tests/Unit/Presentation/Factory/EventFactoryTest.php +++ b/tests/Unit/Presentation/Factory/EventFactoryTest.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. diff --git a/tests/Unit/Util/DateTimeImmutableFactoryTest.php b/tests/Unit/Util/DateTimeImmutableFactoryTest.php index 7a9cf58d..4b81dff0 100644 --- a/tests/Unit/Util/DateTimeImmutableFactoryTest.php +++ b/tests/Unit/Util/DateTimeImmutableFactoryTest.php @@ -3,7 +3,7 @@ /* * This file is part of the eluceo/iCal package. * - * (c) 2020 Markus Poerschke + * (c) 2021 Markus Poerschke * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE.