From 1514162a0428a40ae5ec17491443c31e9965ccf7 Mon Sep 17 00:00:00 2001 From: Andrew Longosz Date: Wed, 27 Sep 2023 11:43:22 +0200 Subject: [PATCH] [PHPStan] Fixed missing PHPDoc in Core Bundle Imagine\BinaryLoader --- src/bundle/Core/Imagine/BinaryLoader.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bundle/Core/Imagine/BinaryLoader.php b/src/bundle/Core/Imagine/BinaryLoader.php index b90dc6675d..1c40589515 100644 --- a/src/bundle/Core/Imagine/BinaryLoader.php +++ b/src/bundle/Core/Imagine/BinaryLoader.php @@ -33,6 +33,11 @@ public function __construct(IOServiceInterface $ioService, MimeTypesInterface $m $this->mimeTypes = $mimeTypes; } + /** + * @param string $path + * + * @return \Liip\ImagineBundle\Binary\BinaryInterface + */ public function find($path) { try {