Library that is meant to be used inside Eightshift Boilerplate and Eightshift Boilerplate Plugin libs via composer in order to be able to easily set up a modern development process.
When running the CLI command for generating the LoadMoreRoute, it finishes correctly, but the namespace ends up using the project name, which can cause troubles if it includes spaces.
Example:
I fixed it by modifying getThemeName in src/Helpers/ProjectInfoTrait.php to use TextDomain instead of project name, but it's obviously not a permanent fix 😄
When running the CLI command for generating the
LoadMoreRoute
, it finishes correctly, but the namespace ends up using the project name, which can cause troubles if it includes spaces.Example:
I fixed it by modifying
getThemeName
insrc/Helpers/ProjectInfoTrait.php
to useTextDomain
instead of project name, but it's obviously not a permanent fix 😄