From da33771261d392f9d443b254551c0e0cac76e2b9 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 9 Jun 2023 19:31:14 +0200 Subject: [PATCH] Use helper traits. --- Models/Client.php | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Models/Client.php b/Models/Client.php index 83ffaaa..64b36b4 100755 --- a/Models/Client.php +++ b/Models/Client.php @@ -105,14 +105,6 @@ class Client */ private array $payments = []; - /** - * Files. - * - * @var EditorDoc[] - * @since 1.0.0 - */ - private array $notes = []; - /** * Contact elements. * @@ -446,5 +438,6 @@ class Client } use \Modules\Media\Models\MediaListTrait; + use \Modules\Editor\Models\EditorDocListTrait; use \Modules\Attribute\Models\AttributeHolderTrait; }