File "LoggerAwareInterface.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/kadence-starter-templates/vendor/vendor-prefixed/psr/log/Psr/Log/LoggerAwareInterface.php
File size: 424 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* @license MIT
*
* Modified using {@see https://github.com/BrianHenryIE/strauss}.
*/
namespace KadenceWP\KadenceStarterTemplates\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);
}