Przeglądaj źródła

Merge branch 'develop'

develop
Guillaume 2 lat temu
rodzic
commit
0e1752d6ae
1 zmienionych plików z 15 dodań i 0 usunięć
  1. +15
    -0
      Model/User/UserModel.php

+ 15
- 0
Model/User/UserModel.php Wyświetl plik

@@ -82,6 +82,11 @@ abstract class UserModel implements EntityInterface, UserInterface, SovUserInter
*/
protected $ticketTypesNotification = [];

/**
* @ORM\Column(type="datetime", nullable=true)
*/
protected $lastLogin;

public function __construct()
{
$this->tickets = new ArrayCollection();
@@ -335,5 +340,15 @@ abstract class UserModel implements EntityInterface, UserInterface, SovUserInter
return $this;
}

public function getLastLogin()
{
return $this->lastLogin;
}

public function setLastLogin(\DateTime $time = null)
{
$this->lastLogin = $time;

return $this;
}
}

Ładowanie…
Anuluj
Zapisz