- π³πΏNew Zealand quietone
Can anyone provide more details on why allowing \Drupal\Core is helpful?
If we don't receive additional information to help with the issue, it may be closed after three months.
+++ b/core/tests/Drupal/Tests/Component/DrupalComponentTest.php
@@ -68,6 +68,13 @@ protected function findPhpClasses($dir) {
+ // Remove multiline comments.
+ $contents = preg_replace('@/\*.*?\*/@s', '', $contents);
+ $contents = preg_replace('/\n\s*\n/', "\n", $contents);
+ // Removes single line '//' comments.
+ $contents = preg_replace('@[ \t]*//.*[ \t]*[\r\n]@', '', $contents);
Postponed: needs info
11.0 π₯
Last updated
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Can anyone provide more details on why allowing \Drupal\Core is helpful?
If we don't receive additional information to help with the issue, it may be closed after three months.