2018-04-04 16:25:25 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace AppBundle\Entity;
|
|
|
|
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
use FOS\UserBundle\Model\User as BaseUser;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* User
|
|
|
|
*
|
|
|
|
* @ORM\Table(name="custom_user")
|
|
|
|
* @ORM\Entity(repositoryClass="AppBundle\Repository\UserRepository")
|
|
|
|
*/
|
|
|
|
class User extends BaseUser {
|
|
|
|
/**
|
|
|
|
* @var int
|
|
|
|
*
|
|
|
|
* @ORM\Column(name="id", type="integer")
|
|
|
|
* @ORM\Id
|
|
|
|
* @ORM\GeneratedValue(strategy="AUTO")
|
|
|
|
*/
|
|
|
|
protected $id;
|
|
|
|
|
2018-04-04 17:42:27 +02:00
|
|
|
/**
|
|
|
|
* @ORM\Column(name="google_id", type="string", length=255, nullable=true)
|
|
|
|
*/
|
|
|
|
private $googleId;
|
|
|
|
|
|
|
|
private $googleAccessToken;
|
2018-04-04 16:25:25 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get id
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getId() {
|
|
|
|
return $this->id;
|
|
|
|
}
|
|
|
|
|
2018-04-04 17:42:27 +02:00
|
|
|
/**
|
|
|
|
* Set googleId
|
|
|
|
*
|
|
|
|
* @param string $googleId
|
|
|
|
*
|
|
|
|
* @return User
|
|
|
|
*/
|
|
|
|
public function setGoogleId($googleId)
|
|
|
|
{
|
|
|
|
$this->googleId = $googleId;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get googleId
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getGoogleId()
|
|
|
|
{
|
|
|
|
return $this->googleId;
|
|
|
|
}
|
|
|
|
}
|