1 <?php 2 3 namespace Psr\Log; 4 5 /** 6 * Describes a logger-aware instance. 7 */ 8 interface LoggerAwareInterface 9 { 10 /** 11 * Sets a logger instance on the object. 12 * 13 * @param LoggerInterface $logger 14 * 15 * @return void 16 */ 17 public function setLogger(LoggerInterface $logger); 18 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body