diff --git a/src/main/php/img/util/IptcData.class.php b/src/main/php/img/util/IptcData.class.php index 909b2ba8..ff813107 100755 --- a/src/main/php/img/util/IptcData.class.php +++ b/src/main/php/img/util/IptcData.class.php @@ -227,7 +227,7 @@ public function getKeywords() { * * @param util.Date dateCreated default NULL */ - public function setDateCreated(Date $dateCreated= null) { + public function setDateCreated($dateCreated= null) { $this->dateCreated= $dateCreated; } @@ -237,7 +237,7 @@ public function setDateCreated(Date $dateCreated= null) { * @param util.Date dateCreated default NULL * @return img.util.IptcData this */ - public function withDateCreated(Date $dateCreated= null) { + public function withDateCreated($dateCreated= null) { $this->dateCreated= $dateCreated; return $this; }