Im running drupal 7.87 and in my module I have an error on this line
$link_parent[] = array('A0en' => '891');
I tried with double quotes
$link_parent[] = array("A0en" => "891");
In both cases the same error is:
ParseError: syntax error, unexpected ‘ ‘ (T_STRING) in drupal_load() (line 1331 of /home/customer/www/test.mydomain.com/public_html/sites/all/modules/my_module/my_module.module).
When I comment out this line there is no error anymore.
What could be the problem?