pattern_library-8.x-2.x-dev/src/PatternModifierTypeManagerInterface.php
src/PatternModifierTypeManagerInterface.php
<?php
namespace Drupal\pattern_library;
/**
* Define the pattern modifier type interface.
*/
interface PatternModifierTypeManagerInterface {
/**
* Process pattern library modifier type value.
*
* @param $plugin_id
* The modifier type plugin id.
* @param $value
* The modifier type raw value.
*
* @return mixed
* The modifier type processed value.
*/
public function processModifierValue($plugin_id, $value);
}
