forked from kevinowino869/mitrobill
.github
admin
docs
install
pages_template
qrcode
scan
system
autoload
cache
controllers
devices
lan
paymentgateway
plugin
uploads
vendor
composer
mpdf
myclabs
paragonie
psr
http-message
log
Psr
Log
Test
AbstractLogger.php
InvalidArgumentException.php
LogLevel.php
LoggerAwareInterface.php
LoggerAwareTrait.php
LoggerInterface.php
LoggerTrait.php
NullLogger.php
LICENSE
README.md
composer.json
setasign
smarty
autoload.php
.htaccess
api.php
boot.php
composer.json
composer.lock
cron.php
cron_reminder.php
index.html
orm.php
updates.json
ui
.gitignore
.htaccess_firewall
CHANGELOG.md
Dockerfile
LICENSE
README.md
composer.json
config.sample.php
docker-compose.example.yml
favicon.ico
index.php
init.php
radius.php
update.php
version.json
19 lines
297 B
PHP
19 lines
297 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace Psr\Log;
|
||
|
|
||
|
/**
|
||
|
* Describes a logger-aware instance.
|
||
|
*/
|
||
|
interface LoggerAwareInterface
|
||
|
{
|
||
|
/**
|
||
|
* Sets a logger instance on the object.
|
||
|
*
|
||
|
* @param LoggerInterface $logger
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function setLogger(LoggerInterface $logger);
|
||
|
}
|