Skip to content

Commit

Permalink
Merge pull request #40 from koenig-k/bugfix-trigger-E_STRICT
Browse files Browse the repository at this point in the history
Don't call trigger_error with E_STRICT
  • Loading branch information
Pierstoval authored Dec 21, 2023
2 parents 2d4d910 + f85b8a8 commit 9574183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ public function rawCommand(string $command, bool $append = false): self
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! 😃
MSG
;
@\trigger_error($msg, \E_STRICT);
@\trigger_error($msg, \E_USER_WARNING);

if ($append) {
$this->commandToAppend[] = $command;
Expand Down

0 comments on commit 9574183

Please sign in to comment.