После обновления ядра Drupal 8.6.7-> 8.6.9 Drush перестал работать - PullRequest
0 голосов
/ 17 февраля 2019

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();
    }
}
...