From 891c61ef952cd072e53c91313f5e016939a6894c Mon Sep 17 00:00:00 2001 From: jorisdugue Date: Wed, 30 Oct 2024 21:04:38 +0100 Subject: [PATCH] fix(chore): resolve problem of typing --- Entity/ContentLibraries.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Entity/ContentLibraries.php b/Entity/ContentLibraries.php index 9ba09e0..571a2a6 100644 --- a/Entity/ContentLibraries.php +++ b/Entity/ContentLibraries.php @@ -80,14 +80,14 @@ public function setLibrary($library): self } /** - * @return int + * @return string|null */ public function getDependencyType(): ?string { return $this->dependencyType; } /** - * @param null|int|string $dependencyType + * @param null|string $dependencyType * @return self */ public function setDependencyType(?string $dependencyType): self