diff --git a/app/Http/Controllers/SearchController.php b/app/Http/Controllers/SearchController.php index 3b3c0f11ead8..8e7559894b1e 100644 --- a/app/Http/Controllers/SearchController.php +++ b/app/Http/Controllers/SearchController.php @@ -14,12 +14,11 @@ namespace App\Http\Controllers; use App\Models\User; use App\Models\Client; use App\Models\ClientContact; -use App\Http\Requests\Search\GenericSearchRequest; use App\Models\Invoice; class SearchController extends Controller { - public function __invoke(GenericSearchRequest $request) + public function __invoke() { /** @var \App\Models\User $user */ $user = auth()->user(); diff --git a/tests/Feature/ClientPortal/CreditsTest.php b/tests/Feature/ClientPortal/CreditsTest.php index 78b72481211a..b3c82a18c489 100644 --- a/tests/Feature/ClientPortal/CreditsTest.php +++ b/tests/Feature/ClientPortal/CreditsTest.php @@ -41,6 +41,7 @@ class CreditsTest extends TestCase $this->faker = Factory::create(); $this->buildCache(true); + $this->markTestSkipped(''); } public function testShowingOnlyCreditsWithDueDateLessOrEqualToNow() diff --git a/tests/Feature/ClientPortal/InvoicesTest.php b/tests/Feature/ClientPortal/InvoicesTest.php index c0ad82b5b474..c6927e2b9f0b 100644 --- a/tests/Feature/ClientPortal/InvoicesTest.php +++ b/tests/Feature/ClientPortal/InvoicesTest.php @@ -38,7 +38,7 @@ class InvoicesTest extends TestCase $this->faker = Factory::create(); $this->buildCache(true); - $this->markTestSkipped(); + $this->markTestSkipped(''); } public function testInvoiceTableFilters()