We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
no_transitions_css
1 parent 411bdf6 commit fb775c3Copy full SHA for fb775c3
src/Drupal/ExtensionDiscovery.php
@@ -358,6 +358,13 @@ protected function scanDirectory($dir): array
358
continue;
359
}
360
361
+ // This test module has a function declaration that conflicts with another module. Explicitly skip it.
362
+ // @see https://www.drupal.org/project/drupal/issues/3020142
363
+ // @todo remove when Drupal core fixed.
364
+ if ($fileinfo->getBasename('.info.yml') === 'no_transitions_css') {
365
+ continue;
366
+ }
367
+
368
// Determine extension type from info file.
369
$type = false;
370
$file = $fileinfo->openFile('r');
0 commit comments