PluginProbe
UpStream: a Project Management Plugin for WordPress / trunk
UpStream: a Project Management Plugin for WordPress vtrunk
trunk 1.39.0 1.39.1 1.39.2 1.39.3 2.0.7 2.1.0
upstream / vendor / psr / log / Psr / Log / LoggerAwareInterface.php

LoggerAwareInterface.php in UpStream: a Project Management Plugin for WordPress trunk, at vendor/psr/log/Psr/Log/LoggerAwareInterface.php

19 lines 297 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 }
19