Fehler beseitigt, die beim Schreiben der Tests auffielen.

This commit is contained in:
2021-03-31 15:39:35 +02:00
parent 7e8d4fbdf4
commit 610e892063
2 changed files with 4 additions and 4 deletions
@@ -11,21 +11,21 @@ interface RepositoryWriterInterface
/**
* @param T $model
*
* @throws UnsupportedModelException
* @throws RepositoryModelAlreadyExists
*/
public function insert(mixed $model): void;
/**
* @param T $model
*
* @throws UnsupportedModelException
* @throws RepositoryRecordNotFoundException
*/
public function update(mixed $model): void;
/**
* @param T $model
*
* @throws UnsupportedModelException
* @throws RepositoryRecordNotFoundException
*/
public function delete(mixed $model): void;
}