XAPI: Fix namespace - refs BT#16742

pull/3687/head
Angel Fernando Quiroz Campos 6 years ago
parent a1dbcdbe3d
commit fb048378cf
  1. 4
      plugin/xapi/src/Entity/LrsAuth.php

@ -93,7 +93,7 @@ class LrsAuth
/**
* @return \DateTime
*/
public function getCreatedAt(): DateTime
public function getCreatedAt(): \DateTime
{
return $this->createdAt;
}
@ -101,7 +101,7 @@ class LrsAuth
/**
* @param \DateTime $createdAt
*/
public function setCreatedAt(DateTime $createdAt): LrsAuth
public function setCreatedAt(\DateTime $createdAt): LrsAuth
{
$this->createdAt = $createdAt;

Loading…
Cancel
Save