From 39f1dfde83e0a9c62a360e9dd204b6182f6c23fe Mon Sep 17 00:00:00 2001 From: Khalil Laleh Date: Wed, 29 Nov 2023 06:03:55 +0100 Subject: [PATCH] Add trait to --- src/Illuminate/Testing/Fluent/AssertableJson.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Illuminate/Testing/Fluent/AssertableJson.php b/src/Illuminate/Testing/Fluent/AssertableJson.php index fde468e33a87..5fd76d9a7de3 100644 --- a/src/Illuminate/Testing/Fluent/AssertableJson.php +++ b/src/Illuminate/Testing/Fluent/AssertableJson.php @@ -5,6 +5,7 @@ use Closure; use Illuminate\Contracts\Support\Arrayable; use Illuminate\Support\Arr; +use Illuminate\Support\Traits\Conditionable; use Illuminate\Support\Traits\Macroable; use Illuminate\Support\Traits\Tappable; use Illuminate\Testing\AssertableJsonString; @@ -16,6 +17,7 @@ class AssertableJson implements Arrayable Concerns\Matching, Concerns\Debugging, Concerns\Interaction, + Conditionable, Macroable, Tappable;