Pull merge.
[yaffs-website] / vendor / consolidation / robo / src / Contract / ConfigAwareInterface.php
1 <?php
2
3 namespace Robo\Contract;
4
5 use Consolidation\Config\ConfigInterface;
6
7 interface ConfigAwareInterface
8 {
9     /**
10      * Set the config reference
11      *
12      * @param ConfigInterface $config
13      *
14      * @return $this
15      */
16     public function setConfig(ConfigInterface $config);
17
18     /**
19      * Get the config reference
20      *
21      * @return ConfigInterface
22      */
23     public function getConfig();
24 }