id; } public function getName() { return $this->name; } public function setName($name) { $this->name = $name; } public function getCreated() { return $this->created; } public function setCreated($created) { $this->created = $created; } public function getCreator() { return $this->creator; } public function setCreator($creator) { $this->creator = $creator; } /** * {@inheritdoc} */ public function delete() { } /** * {@inheritdoc} */ public function create() { } /** * {@inheritdoc} */ public function update() { } /** * {@inheritdoc} */ public function serialize() { } /** * {@inheritdoc} */ public function unserialize($data) { } /** * Init object by ID. * * This usually happens from DB or cache * * @param int $id Object ID * * @return void * * @since 1.0.0 */ public function init($id) { // TODO: Implement init() method. } /** * Overwriting clone in order to maintain singleton pattern. * * @since 1.0.0 */ public function __clone() { // TODO: Implement __clone() method. } }