getCreator() public méthode

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