From e5509d4776a23cc1e83ea591647e3e64d601bbf4 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Thu, 14 Jun 2018 07:34:19 +0100 Subject: [PATCH] Use correct ValidatingTrait. Closes #3033 --- app/Models/Taggable.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Models/Taggable.php b/app/Models/Taggable.php index d8c0c1fb..9b6c94a1 100644 --- a/app/Models/Taggable.php +++ b/app/Models/Taggable.php @@ -11,7 +11,7 @@ namespace CachetHQ\Cachet\Models; -use AltThree\TestBench\ValidationTrait; +use AltThree\Validator\ValidatingTrait; use Illuminate\Database\Eloquent\Model; /** @@ -21,7 +21,7 @@ use Illuminate\Database\Eloquent\Model; */ class Taggable extends Model { - use ValidationTrait; + use ValidatingTrait; /** * The attributes that should be casted to native types.