Skip to content

Commit 8d13d2d

Browse files
committed
[Doc] Add missing methods
1 parent 1c1cd37 commit 8d13d2d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/BeSimple/SoapBundle/Resources/doc/soapserver/tutorial/complex_type.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,20 @@ You can expose only the properties (public, protected or private) of a complex t
146146
return $this->createdAt;
147147
}
148148
149+
public function setCreatedAt(\DateTime $createdAt)
150+
{
151+
$this->createdAt = $createdAt;
152+
}
153+
149154
public function getUpdatedAt()
150155
{
151156
return this->updatedAt;
152157
}
158+
159+
public function setUpdatedAt(\DateTime $updatedAt)
160+
{
161+
$this->updatedAt = $updatedAt;
162+
}
153163
}
154164
155165
ComplexType

0 commit comments

Comments
 (0)