Ejemplo n.º 1
0
 /**
  * Run the application
  */
 public function run()
 {
     $request = Request::createFromGlobals();
     $this->instance('request', $request);
     $this->bootProviders();
     $response = $this['router']->dispatch($this['request']);
     if (false == $response instanceof Response) {
         $response = new Response($response);
     }
     $response->send();
 }
Ejemplo n.º 2
0
 public function testRequestMethod()
 {
     $_SERVER['REQUEST_METHOD'] = 'POST';
     $request = Request::createFromGlobals();
     $this->assertEquals('POST', $request->getMethod());
 }