setText($text); $this->seed = $seed; } // Set text public function setText($text) { $this->text = $text; } // Convert to storage format public function toStore() { // Create new Store $store = new Store($this->text, $this->seed); // Parse $store = $store->generate(); // And return return $store; } // Convert to storage format public function toHTML() { // Create new Parse $parse = new Parse($this->text, $this->seed); // Parse $parse = $parse->parse(); // And return return $parse; } }