From b2987c6902f66ab69afb3d0058f89789c3efc261 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Kone=C4=8Dn=C3=BD?= Date: Sat, 5 Sep 2020 19:54:20 +0200 Subject: [PATCH] updated dependencies --- composer.json | 2 +- src/ChatCharactersCollection.php | 3 +-- src/ChatMessagesCollection.php | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index ffa1a6d..015208b 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ "nette/forms": "^3.0.2", "latte/latte": "^2.6 || ^3.0", "nette/utils": "^3.0", - "nexendrie/utils": "^1.7", + "nexendrie/utils": "^1.8", "symfony/polyfill-php80": "^1.18" }, "require-dev": { diff --git a/src/ChatCharactersCollection.php b/src/ChatCharactersCollection.php index 9c3f92f..1ecc0f4 100644 --- a/src/ChatCharactersCollection.php +++ b/src/ChatCharactersCollection.php @@ -9,7 +9,6 @@ * @author Jakub Konečný */ final class ChatCharactersCollection extends \Nexendrie\Utils\Collection { - /** @var string */ - protected $class = ChatCharacter::class; + protected string $class = ChatCharacter::class; } ?> \ No newline at end of file diff --git a/src/ChatMessagesCollection.php b/src/ChatMessagesCollection.php index 9289911..1a37c22 100644 --- a/src/ChatMessagesCollection.php +++ b/src/ChatMessagesCollection.php @@ -9,7 +9,6 @@ * @author Jakub Konečný */ final class ChatMessagesCollection extends \Nexendrie\Utils\Collection { - /** @var string */ - protected $class = ChatMessage::class; + protected string $class = ChatMessage::class; } ?> \ No newline at end of file