From c6c1cbbc4a298ef88a94a067cc1f538138380e7c Mon Sep 17 00:00:00 2001 From: Samuel Stancl Date: Tue, 31 Mar 2026 03:44:19 +0200 Subject: [PATCH] phpstan fixes --- src/Commands/GenerateFaviconsCommand.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Commands/GenerateFaviconsCommand.php b/src/Commands/GenerateFaviconsCommand.php index 5dfc2f5..8b3c05c 100644 --- a/src/Commands/GenerateFaviconsCommand.php +++ b/src/Commands/GenerateFaviconsCommand.php @@ -60,14 +60,14 @@ class GenerateFaviconsCommand extends Command $manager = new ImageManager(['driver' => 'imagick']); // @phpstan-ignore argument.type $this->comment('Generating ico...'); - $manager // @phpstan-ignore method.notFound - ->make($path) + $manager + ->make($path) // @phpstan-ignore method.notFound ->resize(32, 32) ->save(public_path('favicon.ico')); $this->comment('Generating png...'); - $manager // @phpstan-ignore method.notFound - ->make($path) + $manager + ->make($path) // @phpstan-ignore method.notFound ->resize(32, 32) ->save(public_path('favicon.png')); }