From 6b98a716f9f66cca9ed43a3edb8fc3fd18997ec3 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 21 Feb 2024 08:07:01 -0600 Subject: [PATCH] wip --- src/Illuminate/Database/Eloquent/Relations/Relation.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Illuminate/Database/Eloquent/Relations/Relation.php b/src/Illuminate/Database/Eloquent/Relations/Relation.php index cffb14bf5a25..7fea6b70d95b 100755 --- a/src/Illuminate/Database/Eloquent/Relations/Relation.php +++ b/src/Illuminate/Database/Eloquent/Relations/Relation.php @@ -10,14 +10,12 @@ use Illuminate\Database\Eloquent\ModelNotFoundException; use Illuminate\Database\MultipleRecordsFoundException; use Illuminate\Database\Query\Expression; -use Illuminate\Support\Traits\Conditionable; use Illuminate\Support\Traits\ForwardsCalls; use Illuminate\Support\Traits\Macroable; -use Illuminate\Support\Traits\Tappable; abstract class Relation implements BuilderContract { - use Conditionable, ForwardsCalls, Macroable, Tappable { + use ForwardsCalls, Macroable { Macroable::__call as macroCall; }