Skip to content
Snippets Groups Projects

Issue #3472367 by hussainweb: Error with Drush 13

Merged Hussain Abbas requested to merge issue/do_username-3472367:3472367-error-with-drush into 2.x
2 files
+ 2
6
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -4,7 +4,6 @@ namespace Drupal\do_username\Commands;
use Drupal\Core\Entity\EntityFieldManager;
use Drupal\Core\Entity\EntityTypeManager;
use Drupal\Core\Logger\LoggerChannelFactoryInterface;
use Drush\Commands\DrushCommands;
/**
@@ -49,13 +48,10 @@ class DOCopyFieldValues extends DrushCommands {
* Entity type service.
* @param \Drupal\Core\Entity\EntityFieldManager $entityFieldManager
* Entity type service.
* @param \Drupal\Core\Logger\LoggerChannelFactoryInterface $loggerChannelFactory
* Logger service.
*/
public function __construct(EntityTypeManager $entityTypeManager, EntityFieldManager $entityFieldManager, LoggerChannelFactoryInterface $loggerChannelFactory) {
public function __construct(EntityTypeManager $entityTypeManager, EntityFieldManager $entityFieldManager) {
$this->entityTypeManager = $entityTypeManager;
$this->entityFieldManager = $entityFieldManager;
$this->logger = $loggerChannelFactory->get('do_username');
}
/**
Loading