Ejemplo n.º 1
0
 /**
  * Uses the application to build a response object based on the current state of the request class
  *
  * @return void
  * @author Dan Cox
  */
 public function respond()
 {
     $this->response = $this->application->react();
     // Create the crawler for any html assertions
     $this->crawler = new Crawler($this->response->getContent());
 }