Private
Public Access
1
0

save facebook id to db

This commit is contained in:
2017-01-22 15:19:26 +01:00
parent 0effd8ab8d
commit a91172ef7a
4 changed files with 76 additions and 0 deletions

View File

@@ -443,4 +443,52 @@ class PlayedGame
{
return $this->resign;
}
/**
* Set created
*
* @param \DateTime $created
*
* @return PlayedGame
*/
public function setCreated($created)
{
$this->created = $created;
return $this;
}
/**
* Get created
*
* @return \DateTime
*/
public function getCreated()
{
return $this->created;
}
/**
* Set updated
*
* @param \DateTime $updated
*
* @return PlayedGame
*/
public function setUpdated($updated)
{
$this->updated = $updated;
return $this;
}
/**
* Get updated
*
* @return \DateTime
*/
public function getUpdated()
{
return $this->updated;
}
}

View File

@@ -162,4 +162,28 @@ class Step
{
return $this->wBomb;
}
/**
* Set created
*
* @param \DateTime $created
*
* @return Step
*/
public function setCreated($created)
{
$this->created = $created;
return $this;
}
/**
* Get created
*
* @return \DateTime
*/
public function getCreated()
{
return $this->created;
}
}