コード例 #1
0
 /**
  * @inheritdoc
  */
 public function update(Media $media)
 {
     // index the media object
     $this->searchProvider->index($media);
     $this->em->persist($media);
     $this->em->flush($media);
     return $media;
 }