getCreator() public method

Get creator.
public getCreator ( ) : Sulu\Component\Security\Authentication\UserInterface
return Sulu\Component\Security\Authentication\UserInterface
Exemplo n.º 1
0
 /**
  * @return string
  */
 public function getCreator()
 {
     $user = $this->entity->getCreator();
     if ($user) {
         return $user->getFullName();
     }
     return;
 }