From bd3e71a8a180f66ac4bc8d71ae3087851664f6e1 Mon Sep 17 00:00:00 2001 From: Dave Long <dave@longwaveconsulting.com> Date: Wed, 6 Mar 2024 15:14:18 +0000 Subject: [PATCH] Issue #3425337 by mondrake: Fix root namespace classes DebugClassLoader forward compatibility warnings --- composer/Plugin/Scaffold/Operations/ScaffoldFileCollection.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/composer/Plugin/Scaffold/Operations/ScaffoldFileCollection.php b/composer/Plugin/Scaffold/Operations/ScaffoldFileCollection.php index a1bacf597d77..c6e89ef4c791 100644 --- a/composer/Plugin/Scaffold/Operations/ScaffoldFileCollection.php +++ b/composer/Plugin/Scaffold/Operations/ScaffoldFileCollection.php @@ -115,8 +115,7 @@ protected function checkListHasItemWithContent(array $scaffold_files) { /** * {@inheritdoc} */ - #[\ReturnTypeWillChange] - public function getIterator() { + public function getIterator(): \ArrayIterator { return new \ArrayIterator($this->scaffoldFilesByProject); } -- GitLab