Fixed ServiceDefinition argument and type

This commit is contained in:
Francis Besset 2011-07-21 21:03:39 +02:00
parent 695b7fb663
commit c33005fed2
2 changed files with 7 additions and 7 deletions

View File

@ -36,7 +36,7 @@ class Argument
return $this->type; return $this->type;
} }
public function setType($type) public function setType(Type $type)
{ {
$this->type = $type; $this->type = $type;
} }

View File

@ -28,9 +28,9 @@ class Type
return $this->phpType; return $this->phpType;
} }
public function setPhpType($value) public function setPhpType($phpType)
{ {
$this->phpType = $value; $this->phpType = $phpType;
} }
public function getXmlType() public function getXmlType()
@ -38,9 +38,9 @@ class Type
return $this->xmlType; return $this->xmlType;
} }
public function setXmlType($value) public function setXmlType($xmlType)
{ {
$this->xmlType = $value; $this->xmlType = $xmlType;
} }
public function getConverter() public function getConverter()
@ -48,8 +48,8 @@ class Type
return $this->converter; return $this->converter;
} }
public function setConverter($value) public function setConverter($converter)
{ {
$this->converter = $value; $this->converter = $converter;
} }
} }