You are here

public function ImagemagickExecArguments::reset in ImageMagick 8.2

Same name and namespace in other branches
  1. 8.3 src/ImagemagickExecArguments.php \Drupal\imagemagick\ImagemagickExecArguments::reset()

Resets the command line arguments.

Return value

$this

1 call to ImagemagickExecArguments::reset()
ImagemagickExecArguments::resetArguments in src/ImagemagickExecArguments.php
Resets the command line arguments.

File

src/ImagemagickExecArguments.php, line 376

Class

ImagemagickExecArguments
Stores arguments for execution of ImageMagick/GraphicsMagick commands.

Namespace

Drupal\imagemagick

Code

public function reset() {
  $this->arguments = [];
  return $this;
}