Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebauman committed Nov 7, 2023
1 parent fdd927b commit 8ad4b30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Unit/Models/ModelEventTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ public function test_deleting_model_fires_events()

class ModelQueryBuilderSaveStub extends Builder
{
public function insert(string $dn, array $attributes): bool
public function insertAndGetDn(string $dn, array $attributes): string|false
{
return true;
return $dn;
}

public function update(string $dn, array $modifications): bool
Expand Down

0 comments on commit 8ad4b30

Please sign in to comment.