setCreator() public method

Set creator.
public setCreator ( Sulu\Component\Security\Authentication\UserInterface $creator = null ) : Sulu\Bundle\MediaBundle\Entity\CollectionInterface
$creator Sulu\Component\Security\Authentication\UserInterface
return Sulu\Bundle\MediaBundle\Entity\CollectionInterface
コード例 #1
0
ファイル: Collection.php プロジェクト: sulu/sulu
 /**
  * @param UserInterface $creator
  *
  * @return $this
  */
 public function setCreator($creator)
 {
     $this->entity->setCreator($creator);
     return $this;
 }