Skip to content

Instantly share code, notes, and snippets.

@dadamssg
Created October 4, 2013 21:51
Show Gist options
  • Save dadamssg/6833405 to your computer and use it in GitHub Desktop.
Save dadamssg/6833405 to your computer and use it in GitHub Desktop.
abstract class Document {
final protected static $table;
public function getTable()
{
return self::$table;
}
}
class Person extends Document {
static {
parent::$table = "people";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment