-
-
Save damiankloip/975c80c2b1ff4aedd66c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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