We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3cc2ad commit b6eb9caCopy full SHA for b6eb9ca
src/Internal/Repository/TransactionRepository.php
@@ -47,7 +47,6 @@ public function insertOne(TransactionDtoInterface $dto): Transaction
47
$attributes = $this->transformer->extract($dto);
48
$instance = $this->transaction->newInstance($attributes);
49
assert($instance->save() === true);
50
- assert($instance->getKey() !== null);
51
52
return $instance;
53
}
src/Internal/Repository/TransferRepository.php
@@ -37,7 +37,6 @@ public function insertOne(TransferDtoInterface $dto): Transfer
37
38
$instance = $this->transfer->newInstance($attributes);
39
40
41
42
43
0 commit comments