- Fixed a recurrent bug within deleteOne() method
This commit is contained in:
parent
fa4e686f35
commit
15be1597b8
|
@ -33,7 +33,7 @@ class ConnectionAdapter
|
|||
$this->adapter = $this->instanciateAdapter($adapterName);
|
||||
}
|
||||
else {
|
||||
throw new \InvalidArgumentException("Adapter not found within your configuration array.");
|
||||
throw new \InvalidArgumentException(sprintf("Adapter not found within your configuration array. (%s)", json_encode($connection)));
|
||||
}
|
||||
|
||||
$this->adapter->setup($connection);
|
||||
|
|
|
@ -114,7 +114,7 @@ class Repository
|
|||
throw new Exception\EntityPrimaryKeyUnknown("A primary key value has to be defined to delete an item.");
|
||||
}
|
||||
|
||||
return (bool) $this->wherePrimaryKey($value, null)->deleteOne()->rowCount;
|
||||
return (bool) $this->wherePrimaryKey($value, false)->deleteOne()->rowCount;
|
||||
}
|
||||
|
||||
public function destroy(object $entity) : bool
|
||||
|
|
Loading…
Reference in New Issue