Вчера я обновил ядро Drupal .Сброс Drush (последняя версия) - не помогло.В чем может быть проблема?
<?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();
}
}