更新核心Drupal 8.6.7-> 8.6.9之后,Drush已停止工作

时间:2019-02-17 11:30:28

标签: php drupal drupal-8 drush

Terminal error

昨天我更新了 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();
    }
}

0 个答案:

没有答案