From bff97418edb5ca8b5493f24172780acbde2107b6 Mon Sep 17 00:00:00 2001 From: Tom Witkowski Date: Sun, 21 Jun 2020 18:27:43 +0200 Subject: [PATCH] do not return $this --- tests/Features/Macro.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/Features/Macro.php b/tests/Features/Macro.php index bb230e19..c90a3ea3 100644 --- a/tests/Features/Macro.php +++ b/tests/Features/Macro.php @@ -8,8 +8,6 @@ uses(Macroable::class); beforeEach(function () { $this->macro('bar', function () { assertInstanceOf(TestCase::class, $this); - - return $this; }); });