ErrorException [ Warning ]: Missing argument 2 for Fuel\Core\Response::set_header(), called in /Applications/MAMP/htdocs/green/fuel/core/classes/controller/rest.php on line 103 and defined
<?php
class Controller_Test extends Controller_Rest {
public function get_list()
{
$this->response(array(
'foo' => Input::get('foo'),
'baz' => array(
1, 50, 219
),
'empty' => null
),200);
}
}