Commit 4fdb5286 authored by mondrake's avatar mondrake
Browse files

Issue #3310384 by mondrake: PHP 8.2 deprecation fixes

parent 96efc9f5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -333,8 +333,8 @@ class ImagemagickExecManager implements ImagemagickExecManagerInterface {
    $process->setTimeout($this->timeout);
    try {
      $process->run();
      $output = utf8_encode($process->getOutput());
      $error = utf8_encode($process->getErrorOutput());
      $output = $process->getOutput();
      $error = $process->getErrorOutput();
      $return_code = $process->getExitCode();
    }
    catch (\Exception $e) {