From 4f880eb7619c6629e3774ea273ddfda129ba8183 Mon Sep 17 00:00:00 2001 From: Hugo Sales Date: Mon, 16 Aug 2021 17:17:05 +0100 Subject: [PATCH] [PLUGINS][ENTITY][Cover][ProfileColor] Clean up after interns and move entity defintions to be inside the corresponding plugin, rather than in core --- {src => plugins/Cover}/Entity/Cover.php | 2 +- {src => plugins/ProfileColor}/Entity/ProfileColor.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename {src => plugins/Cover}/Entity/Cover.php (99%) rename {src => plugins/ProfileColor}/Entity/ProfileColor.php (98%) diff --git a/src/Entity/Cover.php b/plugins/Cover/Entity/Cover.php similarity index 99% rename from src/Entity/Cover.php rename to plugins/Cover/Entity/Cover.php index 9460575654..fad8eb4608 100644 --- a/src/Entity/Cover.php +++ b/plugins/Cover/Entity/Cover.php @@ -19,7 +19,7 @@ // }}} -namespace App\Entity; +namespace Plugin\Cover\Entity; use App\Core\DB\DB; use App\Core\Entity; diff --git a/src/Entity/ProfileColor.php b/plugins/ProfileColor/Entity/ProfileColor.php similarity index 98% rename from src/Entity/ProfileColor.php rename to plugins/ProfileColor/Entity/ProfileColor.php index 2b6c47274e..81c31a42d4 100644 --- a/src/Entity/ProfileColor.php +++ b/plugins/ProfileColor/Entity/ProfileColor.php @@ -19,7 +19,7 @@ // }}} -namespace App\Entity; +namespace Plugin\ProfileColor\Entity; use App\Core\Entity; use DateTimeInterface;