コード例 #1
0
ファイル: EntityManager.php プロジェクト: M03G/PrestaShop
 /**
  * Flush entity to DB
  * @param EntityInterface $entity
  * @return $this
  */
 public function save(EntityInterface $entity)
 {
     $entity->save();
     return $this;
 }