DIR: /home/otwalrll/.trash/wp-content/plugins/wpdatatables/lib/psr/log/Psr/Log/ |
Current File : /home/otwalrll/.trash/wp-content/plugins/wpdatatables/lib/psr/log/Psr/Log/LoggerAwareTrait.php |
<?php namespace Psr\Log; /** * Basic Implementation of LoggerAwareInterface. */ trait LoggerAwareTrait { /** * The logger instance. * * @var LoggerInterface */ protected $logger; /** * Sets a logger. * * @param LoggerInterface $logger */ public function setLogger(LoggerInterface $logger) { $this->logger = $logger; } } |