From 159bf30a18abde114e301b0444a80bb0680cf0c4 Mon Sep 17 00:00:00 2001 From: Mark Story Date: Mon, 18 Jul 2016 17:00:52 -0400 Subject: [PATCH] Update formatting. --- en/orm/saving-data.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/en/orm/saving-data.rst b/en/orm/saving-data.rst index 15655b6f16..01e9f4271c 100644 --- a/en/orm/saving-data.rst +++ b/en/orm/saving-data.rst @@ -1072,13 +1072,10 @@ Saving Multiple Entities .. php:method:: saveMany($entities, $options = []) -.. note:: - - Available since 3.2.8. Using this method you can save multiple entities atomically. ``$entites`` can be an array of entities created using ``newEntities()`` / ``patchEntities()``. -``$options`` can have the same options as accepted by ``save()``. +``$options`` can have the same options as accepted by ``save()``:: $data = [ [ @@ -1096,6 +1093,8 @@ be an array of entities created using ``newEntities()`` / ``patchEntities()``. The result will be updated entities on success or ``false`` on failure. +.. versionadded:: 3.2.8 + Bulk Updates ============