sterntours/trunk/_vendor/psr/log/Psr/Log/LoggerAwareInterface.php
Kevin Adametz 33458b2ca3 Update
2020-03-07 19:46:02 +01:00

18 lines
297 B
PHP

<?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);
}