Rapsys Git
/
userbundle
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Update bundle requirements
[userbundle]
/
Entity
/
Civility.php
diff --git
a/Entity/Civility.php
b/Entity/Civility.php
index ea8b95b1a0ec1c3ed5c6c0c884b6aea759c2fd6b..e86b47e8b1ae614fa9aa7d3396f6e4ba129db13b 100644
(file)
--- a/
Entity/Civility.php
+++ b/
Entity/Civility.php
@@
-11,6
+11,7
@@
namespace Rapsys\UserBundle\Entity;
namespace Rapsys\UserBundle\Entity;
+use Doctrine\Common\Collections\Collection;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Event\PreUpdateEventArgs;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Event\PreUpdateEventArgs;
@@
-21,40
+22,36
@@
use Rapsys\UserBundle\Entity\User;
*/
class Civility {
/**
*/
class Civility {
/**
- *
@var integer
+ *
Primary key
*/
*/
- protected
$id
;
+ protected
?int $id = null
;
/**
/**
- *
@var string
+ *
Create datetime
*/
*/
- protected
$title
;
+ protected
\DateTime $created
;
/**
/**
- *
@var \DateT
ime
+ *
Update datet
ime
*/
*/
- protected
$cre
ated;
+ protected
\DateTime $upd
ated;
/**
/**
- *
@var \DateTime
+ *
Users collection
*/
*/
- protected $updated;
-
- /**
- * @var ArrayCollection
- */
- protected $users;
+ protected Collection $users;
/**
* Constructor
*
* @param string $title The civility name
*/
/**
* Constructor
*
* @param string $title The civility name
*/
- public function __construct(string $title) {
+ public function __construct(
protected
string $title) {
//Set defaults
//Set defaults
- $this->title = $title;
$this->created = new \DateTime('now');
$this->updated = new \DateTime('now');
$this->created = new \DateTime('now');
$this->updated = new \DateTime('now');
+
+ //Set collections
$this->users = new ArrayCollection();
}
$this->users = new ArrayCollection();
}
@@
-63,7
+60,7
@@
class Civility {
*
* @return integer
*/
*
* @return integer
*/
- public function getId(): int {
+ public function getId():
?
int {
return $this->id;
}
return $this->id;
}