Skip to content

Commit 9574183

Browse files
authored
Merge pull request #40 from koenig-k/bugfix-trigger-E_STRICT
Don't call trigger_error with E_STRICT
2 parents 2d4d910 + f85b8a8 commit 9574183

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ public function rawCommand(string $command, bool $append = false): self
672672
If the option you need is not supported, please open an issue or a pull-request at https://github.com/Orbitale/ImageMagickPHP in order for us to implement the option you need! 😃
673673
MSG
674674
;
675-
@\trigger_error($msg, \E_STRICT);
675+
@\trigger_error($msg, \E_USER_WARNING);
676676

677677
if ($append) {
678678
$this->commandToAppend[] = $command;

0 commit comments

Comments
 (0)