
| Current Path : /var/www/html_old/abc/vendor/drush/drush/src/Config/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html_old/abc/vendor/drush/drush/src/Config/ConfigAwareTrait.php |
<?php
namespace Drush\Config;
trait ConfigAwareTrait
{
use \Robo\Common\ConfigAwareTrait {
\Robo\Common\ConfigAwareTrait::getConfig as parentGetConfig;
}
/**
* Replaces same method in ConfigAwareTrait in order to provide a
* DrushConfig as return type. Helps with IDE completion.
*
* @see https://stackoverflow.com/a/37687295.
*
* @return \Drush\Config\DrushConfig
*/
public function getConfig()
{
return $this->parentGetConfig();
}
}