• File: LoggerAwareInterface.php
  • Full Path: /home/docteuh/www/modules/log/Psr/Log/LoggerAwareInterface.php
  • Date Modified: 12/06/2023 7:16 PM
  • File size: 364 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Google\Site_Kit_Dependencies\Psr\Log;

/**
 * Describes a logger-aware instance.
 */
interface LoggerAwareInterface
{
    /**
     * Sets a logger instance on the object.
     *
     * @param LoggerInterface $logger
     *
     * @return void
     */
    public function setLogger(\Google\Site_Kit_Dependencies\Psr\Log\LoggerInterface $logger);
}