json_encode, "mime" => "application/json"); $this->encode_fnc = $encode_fnc; } public function start() { //TODO call some hooks header("Content-Type: {$this->encode_fnc["mime"]}"); echo $this->encode_fnc["method"]($this->run()); //TODO call some hooks } abstract public function run(); }