diff --git a/core/modules/migrate/src/Plugin/migrate/process/Get.php b/core/modules/migrate/src/Plugin/migrate/process/Get.php
index 62240be24e3db8effb2ec0af602bcb49575a0729..b2775b3e2d9307237557c4d550533969a2ef2151 100644
--- a/core/modules/migrate/src/Plugin/migrate/process/Get.php
+++ b/core/modules/migrate/src/Plugin/migrate/process/Get.php
@@ -88,7 +88,8 @@
  * @see \Drupal\migrate\Plugin\MigrateProcessInterface
  *
  * @MigrateProcessPlugin(
- *   id = "get"
+ *   id = "get",
+ *   handle_multiples = TRUE
  * )
  */
 class Get extends ProcessPluginBase {
diff --git a/core/modules/migrate/tests/src/Kernel/process/HandleMultiplesTest.php b/core/modules/migrate/tests/src/Kernel/process/HandleMultiplesTest.php
index 1319a7bf8a77f2f32c21aff2f128da82831a784f..548219feb155b0d6095600d52f4624b3e0e64e3f 100644
--- a/core/modules/migrate/tests/src/Kernel/process/HandleMultiplesTest.php
+++ b/core/modules/migrate/tests/src/Kernel/process/HandleMultiplesTest.php
@@ -71,6 +71,32 @@ public function getDefinition() {
             'delimiter' => '/',
           ],
         ],
+        // Process pipeline for testing 'get' overriding a single.
+        'get_from_single' => [
+          // Returns a string.
+          [
+            'plugin' => 'get',
+            'source' => 'scalar',
+          ],
+          // Ignore previous and return an array.
+          [
+            'plugin' => 'get',
+            'source' => 'multiple',
+          ],
+        ],
+        // Process pipeline for testing 'get' overriding an array.
+        'get_from_multiple' => [
+          // Returns an array.
+          [
+            'plugin' => 'get',
+            'source' => 'multiple',
+          ],
+          // Ignore previous and return a string.
+          [
+            'plugin' => 'get',
+            'source' => 'scalar',
+          ],
+        ],
       ],
       'destination' => [
         'plugin' => 'config',
@@ -131,6 +157,11 @@ public function scalarAndMultipleValuesProviderSource() {
             'BAR',
             'BAZ',
           ],
+          'get_from_single' => [
+            'foo',
+            'bar/baz',
+          ],
+          'get_from_multiple' => 'foo/bar',
         ],
       ],
     ];