PHP语法错误,意外T_STRING

I'm using cakephp and php 5.3 and just recently I keep getting this weird error i'm not sure why :

Error: syntax error, unexpected T_STRING, expecting T_FUNCTION File: /Applications/AMPPS/www/gestionstock/server/app/Model/Work.php Line: 2

here is the content of the file Work.php :

<?php 
 class Work extends AppModel{ 
    public $hasOne = array("Projet" , "Salarie" , "Ville") ; 
}

It turned out this error was generated because there was a space ' ' after { in line 2;

I'm not sure why this is an error , but removing the space solved my problem.