Added is_system to User
This commit is contained in:
commit
2d5a8ceaed
@ -142,6 +142,15 @@ class User implements ModelInterface
|
|||||||
*/
|
*/
|
||||||
private $revokedAt;
|
private $revokedAt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var bool $isSystem
|
||||||
|
*
|
||||||
|
* @Type("bool")
|
||||||
|
* @Accessor(getter="isSystem",setter="setIsSystem")
|
||||||
|
* @SkipWhenEmpty()
|
||||||
|
*/
|
||||||
|
private $isSystem;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string|null
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
@ -349,4 +358,20 @@ class User implements ModelInterface
|
|||||||
{
|
{
|
||||||
$this->revokedAt = $revokedAt;
|
$this->revokedAt = $revokedAt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return bool|null
|
||||||
|
*/
|
||||||
|
public function isSystem(): ?bool
|
||||||
|
{
|
||||||
|
return $this->isSystem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param bool $isSystem
|
||||||
|
*/
|
||||||
|
public function setIsSystem(bool $isSystem): void
|
||||||
|
{
|
||||||
|
$this->isSystem = $isSystem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user