You probably don't use any 5.3.x-Version of PHP. "Late Static Binding" (static::$_appMode) is not available in any version before. Use self::$_appMode instead. Its slightly different from static, but in your case it should be OK. For further info read Manual: Late Static Binding