From e02ed4684f959b1d42df954cc75f902ab5086d3c Mon Sep 17 00:00:00 2001 From: Juan Pablo Vial Date: Wed, 7 May 2025 20:04:06 -0400 Subject: [PATCH] LoggerAwareInterface abstract --- app/common/Ideal/LoggerEnabled.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 app/common/Ideal/LoggerEnabled.php diff --git a/app/common/Ideal/LoggerEnabled.php b/app/common/Ideal/LoggerEnabled.php new file mode 100644 index 0000000..b2bc3ef --- /dev/null +++ b/app/common/Ideal/LoggerEnabled.php @@ -0,0 +1,19 @@ +logger = $logger; + return $this; + } + public function getLogger(): LoggerInterface + { + return $this->logger; + } +}