Tento repositář byl archivován 2025-08-22. Můžete zobrazit soubory a klonovat je, ale nemůžete nahrávat ani otevírat úkoly nebo pull requesty.
Files
dumbo/vendor/psr/log/Psr/Log/LoggerAwareInterface.php
2014-11-25 16:42:40 +01:00

18 řádky
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);
}