We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b105bce commit e3e3cefCopy full SHA for e3e3cef
.gitignore
@@ -8,3 +8,4 @@ Tests/Resources/outputs/*
8
9
phpunit.xml
10
.phpunit.result.cache
11
+.phpunit.cache
src/Command.php
@@ -110,7 +110,7 @@ public static function create(?string $magickBinaryPath = null): self
110
public static function findMagickBinaryPath(?string $magickBinaryPath): string
111
{
112
// Delete trimming directory separator
113
- $magickBinaryPath = self::cleanPath($magickBinaryPath, true);
+ $magickBinaryPath = self::cleanPath((string) $magickBinaryPath, true);
114
115
if (!$magickBinaryPath) {
116
$magickBinaryPath = (new ExecutableFinder())->find('magick');
0 commit comments