Skip to content

Commit

Permalink
remote unused public api
Browse files Browse the repository at this point in the history
  • Loading branch information
Gianluca Arbezzano committed Jul 11, 2015
1 parent aa58f76 commit 2fa13ab
Showing 1 changed file with 2 additions and 22 deletions.
24 changes: 2 additions & 22 deletions src/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,35 +49,15 @@ public function getContainer()
return $this->container;
}

public function setResponse($response)
{
$this->response = $response;
}

private function getResponse()
{
return $this->response;
}

public function setRequest($request)
{
$this->request = $request;
}

private function getRequest()
{
return $this->request;
}

public function run($request = null, $response = null)
{
$evt = new HttpFlowEvent();

if ($request == null) {
$request = $this->getRequest();
$request = $this->request;
}
if ($response == null) {
$response = $this->getResponse();
$response = $this->response;
}

$evt->setRequest($request);
Expand Down

0 comments on commit 2fa13ab

Please sign in to comment.