Skip to content

Commit

Permalink
appease code quality check
Browse files Browse the repository at this point in the history
  • Loading branch information
mjauvin committed Dec 22, 2024
1 parent 1698349 commit 39ea49b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/Database/Concerns/HasRelationshipsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ public function testDynamicRelationMethod()
{
$author = new Author();

$author->addDynamicMethod('dynamicMethodAsClosure', function () {});
$author->addDynamicMethod('dynamicMethodAsClosure', function () {
});
$author->addDynamicMethod('dynamicClassMethod', [$author, 'isDatabaseReady']);

$this->assertFalse($author->hasRelation('dynamicMethodAsClosure'));
Expand Down

0 comments on commit 39ea49b

Please sign in to comment.