summaryrefslogtreecommitdiff
path: root/bin/wiki/vendor/psr/log/Psr/Log/LoggerAwareInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'bin/wiki/vendor/psr/log/Psr/Log/LoggerAwareInterface.php')
-rw-r--r--bin/wiki/vendor/psr/log/Psr/Log/LoggerAwareInterface.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/bin/wiki/vendor/psr/log/Psr/Log/LoggerAwareInterface.php b/bin/wiki/vendor/psr/log/Psr/Log/LoggerAwareInterface.php
new file mode 100644
index 00000000..4d64f478
--- /dev/null
+++ b/bin/wiki/vendor/psr/log/Psr/Log/LoggerAwareInterface.php
@@ -0,0 +1,18 @@
+<?php
+
+namespace Psr\Log;
+
+/**
+ * Describes a logger-aware instance.
+ */
+interface LoggerAwareInterface
+{
+ /**
+ * Sets a logger instance on the object.
+ *
+ * @param LoggerInterface $logger
+ *
+ * @return void
+ */
+ public function setLogger(LoggerInterface $logger);
+}