From a5bc4c871c16fa187a60c1b538c4f8cde3b9085c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edi=20Modri=C4=87?= Date: Wed, 15 May 2019 14:46:28 +0200 Subject: [PATCH] EZP-28135: Removed @internal tag from SignalSlot classes (#2641) These classes are used by other packages for ages so this removes some deprecation notices from the logs. --- eZ/Publish/Core/SignalSlot/Signal.php | 2 -- eZ/Publish/Core/SignalSlot/Slot.php | 2 -- 2 files changed, 4 deletions(-) diff --git a/eZ/Publish/Core/SignalSlot/Signal.php b/eZ/Publish/Core/SignalSlot/Signal.php index 189e67266d7..5365942f74a 100644 --- a/eZ/Publish/Core/SignalSlot/Signal.php +++ b/eZ/Publish/Core/SignalSlot/Signal.php @@ -15,8 +15,6 @@ * * A Signal must always be fully export and re-creatable. It must therefore not * depend on external object references, resources or similar. - * - * @internal */ abstract class Signal extends ValueObject { diff --git a/eZ/Publish/Core/SignalSlot/Slot.php b/eZ/Publish/Core/SignalSlot/Slot.php index 0a379a50584..e457335c824 100644 --- a/eZ/Publish/Core/SignalSlot/Slot.php +++ b/eZ/Publish/Core/SignalSlot/Slot.php @@ -10,8 +10,6 @@ /** * A Slot can be assigned to receive a certain Signal. - * - * @internal */ abstract class Slot {