Initial Drupal 11 with DDEV setup
This commit is contained in:
22
vendor/consolidation/config/src/ConfigAwareInterface.php
vendored
Normal file
22
vendor/consolidation/config/src/ConfigAwareInterface.php
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace Consolidation\Config;
|
||||
|
||||
interface ConfigAwareInterface
|
||||
{
|
||||
/**
|
||||
* Set the config reference.
|
||||
*
|
||||
* @param \Consolidation\Config\ConfigInterface $config
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setConfig(ConfigInterface $config);
|
||||
|
||||
/**
|
||||
* Get the config reference.
|
||||
*
|
||||
* @return \Consolidation\Config\ConfigInterface
|
||||
*/
|
||||
public function getConfig();
|
||||
}
|
||||
Reference in New Issue
Block a user