Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
matchish authored Oct 10, 2024
1 parent bb7575c commit 329d843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Unit/MixedTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function test_search_signature()

$mixed = new ReflectionClass(MixedSearch::class);
$mixedParameters = $mixed->getMethod('search')->getParameters();
$mixedDoc = $this->stripStaticFromReturnType($mixed->getMethod('search')->getDocComment());
$mixedDoc = $mixed->getMethod('search')->getDocComment();

$this->assertEquals($searchableParameters, $mixedParameters);
$this->assertEquals($searchableDoc, $mixedDoc);
Expand Down

0 comments on commit 329d843

Please sign in to comment.