Skip to content
Snippets Groups Projects
Commit 74a087ee authored by Yas Naoi's avatar Yas Naoi Committed by Yas Naoi
Browse files

Issue #3170067 by yas: Hotfix - Automated Drupal 9 compatibility fixes

parent 3235b442
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ namespace Drupal\aws_cloud\Plugin\cloud\config;
use Drupal\cloud\Plugin\cloud\CloudPluginBase;
use Drupal\cloud\Plugin\cloud\config\CloudConfigPluginInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\File\Filesystem;
use Drupal\Core\File\FileSystem;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
......@@ -46,7 +46,7 @@ class AwsCloudConfigPlugin extends CloudPluginBase implements CloudConfigPluginI
$plugin_id,
$plugin_definition,
EntityTypeManagerInterface $entityTypeManager,
Filesystem $fileSystem) {
FileSystem $fileSystem) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->entityTypeManager = $entityTypeManager;
......
......@@ -5,7 +5,7 @@ namespace Drupal\k8s\Plugin\cloud\config;
use Drupal\cloud\Plugin\cloud\CloudPluginBase;
use Drupal\cloud\Plugin\cloud\config\CloudConfigPluginInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\File\Filesystem;
use Drupal\Core\File\FileSystem;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
......@@ -46,7 +46,7 @@ class K8sCloudConfigPlugin extends CloudPluginBase implements CloudConfigPluginI
$plugin_id,
$plugin_definition,
EntityTypeManagerInterface $entityTypeManager,
Filesystem $fileSystem) {
FileSystem $fileSystem) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->entityTypeManager = $entityTypeManager;
......
......@@ -5,7 +5,7 @@ namespace Drupal\terraform\Plugin\cloud\config;
use Drupal\cloud\Plugin\cloud\CloudPluginBase;
use Drupal\cloud\Plugin\cloud\config\CloudConfigPluginInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\File\Filesystem;
use Drupal\Core\File\FileSystem;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
......@@ -46,7 +46,7 @@ class TerraformCloudConfigPlugin extends CloudPluginBase implements CloudConfigP
$plugin_id,
$plugin_definition,
EntityTypeManagerInterface $entityTypeManager,
Filesystem $fileSystem) {
FileSystem $fileSystem) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->entityTypeManager = $entityTypeManager;
......
......@@ -5,7 +5,7 @@ namespace Drupal\vmware\Plugin\cloud\config;
use Drupal\cloud\Plugin\cloud\CloudPluginBase;
use Drupal\cloud\Plugin\cloud\config\CloudConfigPluginInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\File\Filesystem;
use Drupal\Core\File\FileSystem;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
......@@ -46,7 +46,7 @@ class VmwareCloudConfigPlugin extends CloudPluginBase implements CloudConfigPlug
$plugin_id,
$plugin_definition,
EntityTypeManagerInterface $entityTypeManager,
Filesystem $fileSystem) {
FileSystem $fileSystem) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->entityTypeManager = $entityTypeManager;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment