- Issue created by @mario.elias
- Status changed to Fixed
almost 2 years ago 1:59pm 5 May 2023 - π³π±Netherlands megachriz
I see that a class with that name exists in the Name β module:
https://git.drupalcode.org/project/name/-/blob/8.x-1.x/src/Feeds/Target/...But the namespace there is defined correctly.
It looks like you are using a module that has an error in its name spacing. For example: if you have a module called "mymodule", it can have a file called mymodule/src/Feeds/Target/NameTarget.php that has the following line in it:
namespace Drupal\feeds\Feeds\Target;
Because the code is part of the module "mymodule" that should be instead:
namespace Drupal\mymodule\Feeds\Target;
So to fix this:
- Scan your files for the line "namespace Drupal\feeds\Feeds\Target".
- Correct the namespace in the file.
- If the module in question is a contributed module on drupal.org:
- Check first if you had patched this module. One way to check this is to compare your module's code with the official module's code. Go to the issue where the patch is on and report the namespace error. Maybe provide an updated patch if you can.
- If the code is already part of the module, search for an existing issue about this error in the module's issue queue.
- If you cannot find an existing issue about it, reopen this issue and move it to the project's queue.
I hope this helps you further. If not, feel free to reopen this issue.
- π³π±Netherlands megachriz
In our conversation in Slack, it turned out to be that the cause of the issue was that a patch with code for the Name module was applied to Feeds instead.
The drupal site's composer.json contained:
"drupal/feeds": { "Add a new FeedsTarget plugin to make name fields mappable in feeds importers.": "https://www.drupal.org/files/issues/NameTarget-2785491-2.patch" },
While that should have been at the time:
"drupal/name": { "Add a new FeedsTarget plugin to make name fields mappable in feeds importers.": "https://www.drupal.org/files/issues/NameTarget-2785491-2.patch" },
A similar patch like the one above has been committed to the Name module so it is no longer needed. See #2785491: Add a new FeedsTarget plugin to make name fields mappable in feeds importers. β
Automatically closed - issue fixed for 2 weeks with no activity.