You are here

protected function ReplaceImageTrait::arguments in Image Effects 8.3

Same name and namespace in other branches
  1. 8 src/Plugin/ImageToolkit/Operation/ReplaceImageTrait.php \Drupal\image_effects\Plugin\ImageToolkit\Operation\ReplaceImageTrait::arguments()
  2. 8.2 src/Plugin/ImageToolkit/Operation/ReplaceImageTrait.php \Drupal\image_effects\Plugin\ImageToolkit\Operation\ReplaceImageTrait::arguments()

File

src/Plugin/ImageToolkit/Operation/ReplaceImageTrait.php, line 15

Class

ReplaceImageTrait
Base trait for replace image operations.

Namespace

Drupal\image_effects\Plugin\ImageToolkit\Operation

Code

protected function arguments() {
  return [
    'replacement_image' => [
      'description' => 'The image to be used to replace current one.',
    ],
  ];
}