mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-30 16:06:07 +00:00
15 lines
219 B
PHP
15 lines
219 B
PHP
<?php
|
|
|
|
namespace Espo\Entities;
|
|
|
|
class EmailAddress extends \Espo\Core\ORM\Entity
|
|
{
|
|
|
|
protected function setName($value)
|
|
{
|
|
$this->valuesContainer['name'] = $value;
|
|
$this->set('lower', strtolower($value));
|
|
}
|
|
|
|
}
|