| 1 | <?php |
||
| 10 | class TransformerPluginManager extends AbstractPluginManager |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * TransformerPluginManager constructor. |
||
| 14 | * @param mixed $configOrContainerInstance |
||
| 15 | * @param array $v3config |
||
| 16 | * @throws \Zend\ServiceManager\Exception\InvalidArgumentException |
||
| 17 | */ |
||
| 18 | public function __construct($configOrContainerInstance = null, array $v3config = []) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Validate the plugin |
||
| 27 | * |
||
| 28 | * Checks that the filter loaded is either a valid callback or an instance |
||
| 29 | * of FilterInterface. |
||
| 30 | * |
||
| 31 | * @param mixed $plugin |
||
| 32 | * @return void |
||
| 33 | * @throws Exception\RuntimeException if invalid |
||
| 34 | */ |
||
| 35 | public function validatePlugin($plugin) |
||
| 46 | } |
||
| 47 |