'join(): Argument #2 ($array) must be of type ?array, string given
So I am a beginner working on a project with symfony 5.2 project with php 8, and I have been trying to run this command
symfony console doctrine:fixtures:load
And this is the error I get :
In Lorem.php line 95: join(): Argument #2 ($array) must be of type ?array, string given
Solution 1:[1]
Check the line 95 of Lorem.php, you will find:
return join($words, ' ') . '.';
change to:
return join(' ', $words) . '.';
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Dharman |