Skip to content

Commit

Permalink
[SoapBundle][SoapCommon] Removed unused TypeRepository in Definition\…
Browse files Browse the repository at this point in the history
…Method classes
  • Loading branch information
francisbesset committed Dec 7, 2013
1 parent a28d340 commit 274f9bb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Definition/Method.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ class Method
private $output;
private $fault;

public function __construct($name, TypeRepository $typeRepository)
public function __construct($name)
{
$this->name = $name;

$this->headers = new Message($name.'Header', $typeRepository);
$this->input = new Message($name.'Request', $typeRepository);
$this->output = new Message($name.'Response', $typeRepository);
$this->fault = new Message($name.'Fault', $typeRepository);
$this->headers = new Message($name.'Header');
$this->input = new Message($name.'Request');
$this->output = new Message($name.'Response');
$this->fault = new Message($name.'Fault');
}

public function getName()
Expand Down

0 comments on commit 274f9bb

Please sign in to comment.