I've got the following code:
class user {
//URLs
private static $signInURL = $_SERVER['DOCUMENT_ROOT'].'/?page=signin';
...
...
...
And I get an unexpected T_VARIABLE error.
How can I construct that url so it won't give me an error?