AbstractLogger.php
6 years ago
InvalidArgumentException.php
6 years ago
LogLevel.php
6 years ago
LoggerAwareInterface.php
6 years ago
LoggerAwareTrait.php
6 years ago
LoggerInterface.php
6 years ago
LoggerTrait.php
6 years ago
NullLogger.php
6 years ago
index.php
7 years ago
LoggerAwareInterface.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace MailPoetVendor\Psr\Log; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | /** |
| 9 | * Describes a logger-aware instance. |
| 10 | */ |
| 11 | interface LoggerAwareInterface |
| 12 | { |
| 13 | /** |
| 14 | * Sets a logger instance on the object. |
| 15 | * |
| 16 | * @param LoggerInterface $logger |
| 17 | * |
| 18 | * @return void |
| 19 | */ |
| 20 | public function setLogger(\MailPoetVendor\Psr\Log\LoggerInterface $logger); |
| 21 | } |
| 22 |