Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Drupal\Core\Plugin\Definition; /** * Provides an interface for a plugin..
Decoded Output download
<?php
namespace Drupal\Core\Plugin\Definition;
/**
* Provides an interface for a plugin definition that has dependencies.
*/
interface DependentPluginDefinitionInterface {
/**
* Gets the config dependencies of this plugin definition.
*
* @return array
* An array of config dependencies.
*
* @see \Drupal\Core\Plugin\PluginDependencyTrait::calculatePluginDependencies()
*/
public function getConfigDependencies();
/**
* Sets the config dependencies of this plugin definition.
*
* @param array $config_dependencies
* An array of config dependencies.
*
* @return $this
*/
public function setConfigDependencies(array $config_dependencies);
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\Core\Plugin\Definition;
/**
* Provides an interface for a plugin definition that has dependencies.
*/
interface DependentPluginDefinitionInterface {
/**
* Gets the config dependencies of this plugin definition.
*
* @return array
* An array of config dependencies.
*
* @see \Drupal\Core\Plugin\PluginDependencyTrait::calculatePluginDependencies()
*/
public function getConfigDependencies();
/**
* Sets the config dependencies of this plugin definition.
*
* @param array $config_dependencies
* An array of config dependencies.
*
* @return $this
*/
public function setConfigDependencies(array $config_dependencies);
}
Function Calls
None |
Stats
MD5 | fd95fdeb0f9f378558e8cc54bfe41e84 |
Eval Count | 0 |
Decode Time | 86 ms |