Grammar revision:
Q: I'm getting an unexpected $ or $end parse/syntax error, what's causing
this?
A: This is caused by an expression which is defined with an opening brace,
while
the closing brace is omitted.
Examples:
if ($condition) {
....
// No closing brace; the error is thrown
function foo () {
....
// No closing brace; the error is thrown |