From c36e102c30604c82024cbd337a5003415af0127d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1si=20Benjamin?= Date: Wed, 16 Jan 2019 15:16:43 +0000 Subject: [PATCH] Fix docblock on ORM/Table.php Change \Cake\ORM\ResultSet to \Cake\Datasource\ResultSetInterface in the docblock of saveMany --- src/ORM/Table.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ORM/Table.php b/src/ORM/Table.php index 77706b00d35..512a96a7091 100644 --- a/src/ORM/Table.php +++ b/src/ORM/Table.php @@ -2209,9 +2209,9 @@ protected function _update($entity, $data) * any one of the records fails to save due to failed validation or database * error. * - * @param \Cake\Datasource\EntityInterface[]|\Cake\ORM\ResultSet $entities Entities to save. + * @param \Cake\Datasource\EntityInterface[]|\Cake\Datasource\ResultSetInterface $entities Entities to save. * @param array|\ArrayAccess $options Options used when calling Table::save() for each entity. - * @return bool|\Cake\Datasource\EntityInterface[]|\Cake\ORM\ResultSet False on failure, entities list on success. + * @return bool|\Cake\Datasource\EntityInterface[]|\Cake\Datasource\ResultSetInterface False on failure, entities list on success. */ public function saveMany($entities, $options = []) {