mirror of
https://github.com/pierre42100/comunic
synced 2024-11-17 02:51:13 +00:00
18 lines
288 B
PHP
18 lines
288 B
PHP
<?php
|
|
|
|
namespace Psr\Log;
|
|
|
|
/**
|
|
* Describes a logger-aware instance
|
|
*/
|
|
interface LoggerAwareInterface
|
|
{
|
|
/**
|
|
* Sets a logger instance on the object
|
|
*
|
|
* @param LoggerInterface $logger
|
|
* @return null
|
|
*/
|
|
public function setLogger(LoggerInterface $logger);
|
|
}
|