Skip to content

Instantly share code, notes, and snippets.

@damiankloip
Last active August 29, 2015 14:07
Show Gist options
  • Save damiankloip/975c80c2b1ff4aedd66c to your computer and use it in GitHub Desktop.
Save damiankloip/975c80c2b1ff4aedd66c to your computer and use it in GitHub Desktop.
<?php
/**
* @file
* Contains \Drupal\Core\Plugin\PluginDiscoveryFactoryInterface.
*/
namespace Drupal\Core\Plugin;
/**
* @todo
*/
interface PluginDiscoveryFactoryInterface {
/**
* @return array
*/
public function getProcessedDefinitions($owner, $plugin_type);
/**
*
*/
public function setProcessedDefinitions($owner, $plugin_type, $processed_definitions);
/**
* @return array
*/
public function getUnProcessedDefinitions($owner, $plugin_type);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment