when trying to include a file of small utility methods inside a class definition I get parse error that seems to say you cannot use include('file.xxx'); between
function or method definitions - can't use it outside the scope of a function.
Is it Working As Designed that you may not include('...) complete function definitions in a class definition? You can include the body of a function definition between the 'public function xx {' and the closing '}', so for large functions or methods you can move most of the code to a separate file - but if you have several short functions I don't see how to include them from a single file.
Suggestions? Am I missing something simple?
...Ian.