Skip to content

Instantly share code, notes, and snippets.

@TheOpenDevProject
Created March 17, 2016 02:12
Show Gist options
  • Save TheOpenDevProject/19282e0188989c8fdfbe to your computer and use it in GitHub Desktop.
Save TheOpenDevProject/19282e0188989c8fdfbe to your computer and use it in GitHub Desktop.
<?php
class HTMLObject{
private $id;
private $elem_class;
private $type;
private $extra_props;
//Do this for each property
public function setId($id = null){
$this->id = $id;
return $this;
}
}
class HTMLActions{
public static function Render(HTMLObject $renderObj){
//Do Render function stuff.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment