[Doc] Add missing methods

This commit is contained in:
Francis Besset 2014-08-13 06:57:03 +02:00
parent 1c1cd377f1
commit 8d13d2dd5c
1 changed files with 10 additions and 0 deletions

View File

@ -146,10 +146,20 @@ You can expose only the properties (public, protected or private) of a complex t
return $this->createdAt;
}
public function setCreatedAt(\DateTime $createdAt)
{
$this->createdAt = $createdAt;
}
public function getUpdatedAt()
{
return this->updatedAt;
}
public function setUpdatedAt(\DateTime $updatedAt)
{
$this->updatedAt = $updatedAt;
}
}
ComplexType