From 2edaf58261cc5d74777abfbf9bcf78f0716976a1 Mon Sep 17 00:00:00 2001 From: ergebnis-bot Date: Mon, 1 Jan 2024 00:09:42 +0000 Subject: [PATCH] Enhancement: Update license year --- .php-cs-fixer.php | 2 +- LICENSE.md | 2 +- rector.php | 2 +- src/BodyMatter.php | 2 +- src/Content.php | 2 +- src/Data.php | 2 +- src/Exception/DataDoesNotHaveKey.php | 2 +- src/Exception/FrontMatterCanNotBeParsed.php | 2 +- src/Exception/FrontMatterHasInvalidKeys.php | 2 +- src/Exception/FrontMatterIsNotAnObject.php | 2 +- src/FrontMatter.php | 2 +- src/Parsed.php | 2 +- src/Parser.php | 2 +- src/YamlParser.php | 2 +- test/Unit/BodyMatterTest.php | 2 +- test/Unit/ContentTest.php | 2 +- test/Unit/DataTest.php | 2 +- test/Unit/Exception/DataDoesNotHaveKeyTest.php | 2 +- test/Unit/Exception/FrontMatterCanNotBeParsedTest.php | 2 +- test/Unit/Exception/FrontMatterHasInvalidKeysTest.php | 2 +- test/Unit/Exception/FrontMatterIsNotAnObjectTest.php | 2 +- test/Unit/FrontMatterTest.php | 2 +- test/Unit/ParsedTest.php | 2 +- test/Unit/YamlParserTest.php | 2 +- test/Util/Helper.php | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index e28035c6..50481095 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/LICENSE.md b/LICENSE.md index 4e4703fd..2478a340 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ # The MIT License (MIT) -Copyright (c) 2020-2023 Andreas Möller +Copyright (c) 2020-2024 Andreas Möller 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 diff --git a/rector.php b/rector.php index 65834dcb..0b9112a7 100644 --- a/rector.php +++ b/rector.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/src/BodyMatter.php b/src/BodyMatter.php index e25fae14..b3fef078 100644 --- a/src/BodyMatter.php +++ b/src/BodyMatter.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/src/Content.php b/src/Content.php index ff86c4e9..b87942d9 100644 --- a/src/Content.php +++ b/src/Content.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/src/Data.php b/src/Data.php index b0f0dcba..b3df0cc9 100644 --- a/src/Data.php +++ b/src/Data.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/src/Exception/DataDoesNotHaveKey.php b/src/Exception/DataDoesNotHaveKey.php index 47ee8f30..1eeac466 100644 --- a/src/Exception/DataDoesNotHaveKey.php +++ b/src/Exception/DataDoesNotHaveKey.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/src/Exception/FrontMatterCanNotBeParsed.php b/src/Exception/FrontMatterCanNotBeParsed.php index cdb09a0a..b44bf630 100644 --- a/src/Exception/FrontMatterCanNotBeParsed.php +++ b/src/Exception/FrontMatterCanNotBeParsed.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/src/Exception/FrontMatterHasInvalidKeys.php b/src/Exception/FrontMatterHasInvalidKeys.php index e3a034a8..f34b539f 100644 --- a/src/Exception/FrontMatterHasInvalidKeys.php +++ b/src/Exception/FrontMatterHasInvalidKeys.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/src/Exception/FrontMatterIsNotAnObject.php b/src/Exception/FrontMatterIsNotAnObject.php index cc868e89..888f74d0 100644 --- a/src/Exception/FrontMatterIsNotAnObject.php +++ b/src/Exception/FrontMatterIsNotAnObject.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/src/FrontMatter.php b/src/FrontMatter.php index b0714efb..b87b2c2a 100644 --- a/src/FrontMatter.php +++ b/src/FrontMatter.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/src/Parsed.php b/src/Parsed.php index 84c1d8dc..2b541dac 100644 --- a/src/Parsed.php +++ b/src/Parsed.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/src/Parser.php b/src/Parser.php index 8c61f170..7cdec383 100644 --- a/src/Parser.php +++ b/src/Parser.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/src/YamlParser.php b/src/YamlParser.php index e017044d..3aaeec7b 100644 --- a/src/YamlParser.php +++ b/src/YamlParser.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/test/Unit/BodyMatterTest.php b/test/Unit/BodyMatterTest.php index 91c72811..b8902255 100644 --- a/test/Unit/BodyMatterTest.php +++ b/test/Unit/BodyMatterTest.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/test/Unit/ContentTest.php b/test/Unit/ContentTest.php index 5385210c..c0f26174 100644 --- a/test/Unit/ContentTest.php +++ b/test/Unit/ContentTest.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/test/Unit/DataTest.php b/test/Unit/DataTest.php index d2535b31..400c757a 100644 --- a/test/Unit/DataTest.php +++ b/test/Unit/DataTest.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/test/Unit/Exception/DataDoesNotHaveKeyTest.php b/test/Unit/Exception/DataDoesNotHaveKeyTest.php index 2f365c25..0a0c57c1 100644 --- a/test/Unit/Exception/DataDoesNotHaveKeyTest.php +++ b/test/Unit/Exception/DataDoesNotHaveKeyTest.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/test/Unit/Exception/FrontMatterCanNotBeParsedTest.php b/test/Unit/Exception/FrontMatterCanNotBeParsedTest.php index bae1de6d..61eadd2e 100644 --- a/test/Unit/Exception/FrontMatterCanNotBeParsedTest.php +++ b/test/Unit/Exception/FrontMatterCanNotBeParsedTest.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/test/Unit/Exception/FrontMatterHasInvalidKeysTest.php b/test/Unit/Exception/FrontMatterHasInvalidKeysTest.php index 0169d0f8..97fedab2 100644 --- a/test/Unit/Exception/FrontMatterHasInvalidKeysTest.php +++ b/test/Unit/Exception/FrontMatterHasInvalidKeysTest.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/test/Unit/Exception/FrontMatterIsNotAnObjectTest.php b/test/Unit/Exception/FrontMatterIsNotAnObjectTest.php index 82d5c9aa..e7cedea8 100644 --- a/test/Unit/Exception/FrontMatterIsNotAnObjectTest.php +++ b/test/Unit/Exception/FrontMatterIsNotAnObjectTest.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/test/Unit/FrontMatterTest.php b/test/Unit/FrontMatterTest.php index 4c3231d0..c604a757 100644 --- a/test/Unit/FrontMatterTest.php +++ b/test/Unit/FrontMatterTest.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/test/Unit/ParsedTest.php b/test/Unit/ParsedTest.php index 73fd8e12..d814402d 100644 --- a/test/Unit/ParsedTest.php +++ b/test/Unit/ParsedTest.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/test/Unit/YamlParserTest.php b/test/Unit/YamlParserTest.php index 92c38ced..338664a5 100644 --- a/test/Unit/YamlParserTest.php +++ b/test/Unit/YamlParserTest.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. diff --git a/test/Util/Helper.php b/test/Util/Helper.php index e307f489..2d569a6a 100644 --- a/test/Util/Helper.php +++ b/test/Util/Helper.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * Copyright (c) 2020-2023 Andreas Möller + * Copyright (c) 2020-2024 Andreas Möller * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code.