• File: LoggerAwareInterface.php
  • Full Path: /home/docteuh/www/tinymce/Psr/Log/LoggerAwareInterface.php
  • Date Modified: 06/23/2026 4:20 PM
  • File size: 338 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace YoastSEO_Vendor\Psr\Log;

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