1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

add a real relation between user and entry

This commit is contained in:
Nicolas Lœuillet 2015-02-06 15:18:54 +01:00 committed by Jeremy
parent 8af35ad932
commit 5f09650eef
2 changed files with 44 additions and 26 deletions

View file

@ -81,13 +81,6 @@ class Entry
*/
private $updatedAt;
/**
* @var string
*
* @ORM\Column(name="user_id", type="decimal", precision=10, scale=0, nullable=true)
*/
private $userId;
/**
* @var string
*
@ -123,6 +116,19 @@ class Entry
*/
private $isPublic;
/**
* @ORM\ManyToOne(targetEntity="User", inversedBy="entries")
*/
private $user;
/*
* @param User $user
*/
public function __construct(User $user)
{
$this->user = $user;
}
/**
* Get id
*
@ -263,26 +269,11 @@ class Entry
}
/**
* Set userId
*
* @param string $userId
* @return Entry
* @return User
*/
public function setUserId($userId)
public function getUser()
{
$this->userId = $userId;
return $this;
}
/**
* Get userId
*
* @return string
*/
public function getUserId()
{
return $this->userId;
return $this->user;
}
/**