I think there is a quite easy answer but, I tried to send a POST request to a REST api from a controller like that :
use Symfony\Component\HttpFoundation\Request;
...
$request = Request::create('127.0.0.1', 'POST', array('test' => 'this is a test'));
but It did nothing, is there anything missing like send or execute method ? Thanks a lot