This commit is contained in:
2025-12-31 00:19:29 +08:00
parent c943d6258b
commit 89d5b604d6
5 changed files with 26 additions and 18 deletions
+2 -2
View File
@@ -41,7 +41,7 @@ class Collection extends AbstractCollection
public function update(array $attributes): bool
{
if ($this->isEmpty()) {
return $this->getLogger()->failure('No data by update', 'mysql');
return $this->getLogger()->logCategory('No data by update', 'mysql');
}
return $this->batch()->update($attributes);
}
@@ -150,7 +150,7 @@ class Collection extends AbstractCollection
{
$model = $this->getModel();
if ($this->isEmpty()) {
return $this->getLogger()->failure('No data by delete', 'mysql');
return $this->getLogger()->logCategory('No data by delete', 'mysql');
}
if (!$model->hasPrimary()) {
throw new Exception('Must set primary key. if you want to delete data');