mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 06:56:05 +00:00
17 lines
229 B
PHP
17 lines
229 B
PHP
<?php
|
|
|
|
namespace Espo\Entities;
|
|
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
|
|
/**
|
|
* @Entity @Table(name="users")
|
|
*/
|
|
class User extends \Espo\ORM\Entity
|
|
{
|
|
public function isAdmin()
|
|
{
|
|
return $this->get('isAdmin');
|
|
}
|
|
}
|