'[heredoc](https://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc)' is a hangover from when PHP was just a simple scripting language. Now it is a fully-fledged OO language, the syntax breaks readability in classes, etc., and should not be used (IOO). - [x] Replace all 'heredoc' - [x] Add code sniffer rule (or suchlike) to not allow it - [ ] Add further rule to disallow multiline strings indented less than the code
'heredoc' is a hangover from when PHP was just a simple scripting language.
Now it is a fully-fledged OO language, the syntax breaks readability in classes, etc., and should not be used (IOO).