OperationBase.php in Drupal 8
Same filename and directory in other branches
File
core/modules/system/tests/modules/image_test/src/Plugin/ImageToolkit/Operation/test/OperationBase.phpView source
<?php
namespace Drupal\image_test\Plugin\ImageToolkit\Operation\test;
use Drupal\Core\ImageToolkit\ImageToolkitOperationBase;
/**
* Provides a base class for test operations.
*/
abstract class OperationBase extends ImageToolkitOperationBase {
/**
* {@inheritdoc}
*/
public function arguments() {
return [];
}
/**
* {@inheritdoc}
*/
public function execute(array $arguments) {
// Nothing to do.
}
}
Classes
Name | Description |
---|---|
OperationBase | Provides a base class for test operations. |