Skip to content

Commit

Permalink
Fix docblock on ORM/Table.php
Browse files Browse the repository at this point in the history
Change \Cake\ORM\ResultSet to \Cake\Datasource\ResultSetInterface in the docblock of saveMany
  • Loading branch information
half2me committed Jan 16, 2019
1 parent a1a1dbb commit c36e102
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ORM/Table.php
Expand Up @@ -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 = [])
{
Expand Down

0 comments on commit c36e102

Please sign in to comment.