From 148a1e2978eeb350cc66a82c8740ce910388bcd9 Mon Sep 17 00:00:00 2001 From: Jelle Sebreghts Date: Fri, 2 Dec 2022 13:46:19 +0100 Subject: [PATCH] Fix use statements in Drupal8Handler --- src/EventHandler/Drupal8Handler.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/EventHandler/Drupal8Handler.php b/src/EventHandler/Drupal8Handler.php index 652c219..a324b69 100644 --- a/src/EventHandler/Drupal8Handler.php +++ b/src/EventHandler/Drupal8Handler.php @@ -5,10 +5,10 @@ use Consolidation\AnnotatedCommand\CommandError; use DigipolisGent\CommandBuilder\CommandBuilder; use DigipolisGent\Robo\Helpers\EventHandler\AbstractTaskEventHandler; +use RandomLib\Factory; use Robo\Collection\CollectionBuilder; use Robo\Contract\ConfigAwareInterface; -use SecurityLibTest\Mocks\Factory; -use SecurityLibTest\Mocks\Strength; +use SecurityLib\Strength; abstract class Drupal8Handler extends AbstractTaskEventHandler implements ConfigAwareInterface { @@ -20,8 +20,6 @@ abstract class Drupal8Handler extends AbstractTaskEventHandler implements Config use \Boedah\Robo\Task\Drush\loadTasks; use \DigipolisGent\Robo\Drupal8\Traits\Drupal8UtilsTrait; - - protected function getDatabaseConfig(array $aliases, ?string $uri = null): array { $app_root = $this->getConfig()->get('digipolis.root.web', false);