aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/psr/log/src/LoggerAwareInterface.php
blob: 062187057d51d3c2d31815030c01a4125cd729d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace Psr\Log;

/**
 * Describes a logger-aware instance.
 */
interface LoggerAwareInterface
{
    /**
     * Sets a logger instance on the object.
     */
    public function setLogger(LoggerInterface $logger): void;
}