Upgraded drupal core with security updates
[yaffs-website] / web / core / lib / Drupal / Core / ImageToolkit / ImageToolkitOperationManagerInterface.php
1 <?php
2
3 namespace Drupal\Core\ImageToolkit;
4
5 /**
6  * Defines an interface for image toolkit operation managers.
7  */
8 interface ImageToolkitOperationManagerInterface {
9
10   /**
11    * Returns a toolkit operation plugin instance.
12    *
13    * @param \Drupal\Core\ImageToolkit\ImageToolkitInterface $toolkit
14    *   The toolkit instance.
15    * @param string $operation
16    *   The operation (e.g. "crop").
17    *
18    * @return \Drupal\Core\ImageToolkit\ImageToolkitOperationInterface
19    *   An instance of the requested toolkit operation plugin.
20    *
21    * @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
22    *   When no plugin is available.
23    */
24   public function getToolkitOperation(ImageToolkitInterface $toolkit, $operation);
25
26 }