ERROR: when compile new form applications

Suddenly, I can’t compile new form applications, scriptcase 9.4.015

The error always occurs in this part of the source code:
//--------------------------------

1212 // The OAuth 2.0 client handler helps us manage access tokens
1213 $oAuth2Client = $fb->getOAuth2Client();
1214 $_SESSION[‘fb_access_token’] = (string) $accessToken;
1215
1216 $fb->setDefaultAccessToken($accessToken);
1217 $response = $fb->get(’/me’);

1218 $user = $response->getGraphUser();
1219 $_SESSION[‘facebook_user’] = $user->getId();
1220 $_SESSION[‘facebook_photo’] = ‘https://graph.facebook.com/’ . $user->getId() . ‘/picture’;
1221 $_SESSION[‘facebook_name’] = $user->getName();
1222 $_SESSION[‘facebook_email’] = $user[‘email’];

[SIZE=14px]1223 $this->();[/SIZE]
//-------------------------------
ERROR:
Parse error: syntax error, unexpected ‘(’, expecting identifier (T_STRING) or variable (T_VARIABLE) or
‘{’ or ‘$’ in C:\Program Files\NetMake\v9\wwwroot\scriptcase\app\AUTORIZA_PED\blank_CARGOS\blank_CARGOS_apl.php
on line [SIZE=14px]1223[/SIZE]

I don’t try to use authenticate with any social network.

I appreciate some help.