This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/application/Espo/Modules/Crm/Entities/Prospect.php
T
Yuri Kuznetsov f1a7bd7d12 dev
2013-12-23 16:53:37 +02:00

12 lines
195 B
PHP

<?php
namespace Espo\Modules\Crm\Entities;
class Prospect extends \Espo\Core\ORM\Entity
{
protected function getName()
{
return $this->get('firstName') . ' ' . $this->get('lastName');
}
}