ソースを参照

saveAll() is now part of shim

Mark Scherer 10 年 前
コミット
cd1317b5f8
1 ファイル変更0 行追加15 行削除
  1. 0 15
      src/Model/Table/Table.php

+ 0 - 15
src/Model/Table/Table.php

@@ -29,21 +29,6 @@ class Table extends ShimTable {
 		return true;
 	}
 
-	/**
-	 * @param array $entities
-	 * @return bool
-	 */
-	public function saveAll(array $entities) {
-		$result = true;
-		foreach ($entities as $entity) {
-			if (!$this->save($entity)) {
-				$result = false;
-			}
-		}
-
-		return $result;
-	}
-
 /**
  * Validator method used to check the uniqueness of a value for a column.
  * This is meant to be used with the validation API and not to be called