Skip to content

Instantly share code, notes, and snippets.

@danielholmstrom
Created February 27, 2014 16:40
Show Gist options
  • Select an option

  • Save danielholmstrom/9253821 to your computer and use it in GitHub Desktop.

Select an option

Save danielholmstrom/9253821 to your computer and use it in GitHub Desktop.
abstract class ExportMessage {
function __construct($type, $params) {
$this->_type = $type;
$this->_params = $params;
}
function getType() {
return $this->_type;
}
function getParams() {
return $this->_params;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment