deblan.tv/vendor/trinity/src/Trinity/.svn/pristine/53/53911b2975b903b48204ba1bf1984f1816c2d09b.svn-base
2015-03-02 21:57:49 +01:00

14 lines
255 B
Plaintext

<?php
namespace Trinity\Bundle\ContactBundle\Model;
use Trinity\Bundle\ContactBundle\Model\om\BaseContact;
class Contact extends BaseContact implements ContactInterface
{
public function getFullname()
{
return $this->getName();
}
}