mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-10 21:08:41 +00:00
19 lines
304 B
PHP
Executable File
19 lines
304 B
PHP
Executable File
<?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) : void;
|
|
}
|