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 8201374 commit 84617e2Copy full SHA for 84617e2
src/Image.php
@@ -80,9 +80,7 @@ public function __construct(string $filename)
80
default => throw new RuntimeException('Image type is not acceptable: ' . $this->getType()),
81
};
82
if (!$instance instanceof GdImage) {
83
- throw new RuntimeException(
84
- "Image of type '{$this->getType()}' does not returned a GdImage instance"
85
- );
+ throw new RuntimeException("Image of type '{$this->getType()}' does not returned a GdImage instance");
86
}
87
$this->setInstance($instance);
88
0 commit comments