[Doc] Add missing methods
This commit is contained in:
parent
1c1cd377f1
commit
8d13d2dd5c
|
@ -146,10 +146,20 @@ You can expose only the properties (public, protected or private) of a complex t
|
||||||
return $this->createdAt;
|
return $this->createdAt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function setCreatedAt(\DateTime $createdAt)
|
||||||
|
{
|
||||||
|
$this->createdAt = $createdAt;
|
||||||
|
}
|
||||||
|
|
||||||
public function getUpdatedAt()
|
public function getUpdatedAt()
|
||||||
{
|
{
|
||||||
return this->updatedAt;
|
return this->updatedAt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function setUpdatedAt(\DateTime $updatedAt)
|
||||||
|
{
|
||||||
|
$this->updatedAt = $updatedAt;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ComplexType
|
ComplexType
|
||||||
|
|
Loading…
Reference in New Issue