"[man]CLASS[/man]" is a reserved word (it denotes the start of a class definition).
I think you want
self::$instance = new self;
You might also want to fix the name of your constructor: it's [font=monospace]__construct[/font], not [font=monospace]construct[/font].