diff --git a/composer.json b/composer.json index bdc8591a..5c8c96d3 100644 --- a/composer.json +++ b/composer.json @@ -38,7 +38,7 @@ "sabre/xml" : "^3.0 || ^4.0" }, "require-dev" : { - "friendsofphp/php-cs-fixer": "^3.49", + "friendsofphp/php-cs-fixer": "^3.51", "phpunit/phpunit" : "^9.6", "phpunit/php-invoker" : "^2.0 || ^3.1", "phpstan/phpstan": "^1.10" diff --git a/lib/Component/VCalendar.php b/lib/Component/VCalendar.php index 318492ce..7b6e66e8 100644 --- a/lib/Component/VCalendar.php +++ b/lib/Component/VCalendar.php @@ -214,8 +214,6 @@ public function getBaseComponents(?string $componentName = null): array * If there is no such component, null will be returned. * * @param string|null $componentName filter by component name - * - * @return VObject\Component|null */ public function getBaseComponent(?string $componentName = null): ?Component { diff --git a/lib/VCardConverter.php b/lib/VCardConverter.php index 74901fc1..ff8fe3f8 100644 --- a/lib/VCardConverter.php +++ b/lib/VCardConverter.php @@ -304,7 +304,7 @@ protected function convertBinaryToUri(Component\VCard $output, Binary $newProper * be valid in vCard 3.0 as well, we should convert those to BINARY if * possible, to improve compatibility. * - * @return Property\Binary|Property\Uri|null + * @return Binary|Uri|null * * @throws InvalidDataException */