You are here

public function EncipherImageEffect::defaultConfiguration in Imagick 8

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides ImageEffectBase::defaultConfiguration

File

src/Plugin/ImageEffect/EncipherImageEffect.php, line 38

Class

EncipherImageEffect
Applies the encipher effect on an image resource.

Namespace

Drupal\imagick\Plugin\ImageEffect

Code

public function defaultConfiguration() {
  return [
    'password' => '',
  ];
}