Skip to content

Instantly share code, notes, and snippets.

@georgestephanis
Last active March 3, 2017 20:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save georgestephanis/7a0c81593581842d36e2383ae22c0a77 to your computer and use it in GitHub Desktop.
Save georgestephanis/7a0c81593581842d36e2383ae22c0a77 to your computer and use it in GitHub Desktop.
<?php
class Test_Class {
public static function init() {
static $instance = NULL;
$instance = new Test_Class();
return $instance;
}
}
class Test_Class_Raw extends Test_Class {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment