Skip to content

Instantly share code, notes, and snippets.

@aguimaraes
Created September 28, 2009 11:35
Show Gist options
  • Save aguimaraes/195360 to your computer and use it in GitHub Desktop.
Save aguimaraes/195360 to your computer and use it in GitHub Desktop.
/**
* Singleton instance of Session.
*/
public static function instance()
{
if (Session::$instance == NULL)
{
// Create a new instance
new Session;
}
return Session::$instance;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment