PHPMailer6
auswertung
bootstrap
classes
config
controller
dashboard
datepicker
jquery
js
language
lib
media
msd
ReadMe
css
images
inc
js
language
mod_cron
tpl
vendor
composer
desarrolla2
league
monolog
phpseclib
psr
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
simple-cache
visualappeal
autoload.php
.gitignore
.htaccess
.htpasswd
README.md
composer.json
composer.lock
config.php
config_overview.php
dump.php
filemanagement.php
help.php
index.php
install.php
license.txt
log.php
main.php
menu.php
refresh_dblist.php
restore.php
sql.php
selfregistration
sql
survey
templates
test
tinymce
.gitignore
Hinweise_zu_php8.txt
config.inc.php
todo.txt
27 lines
428 B
PHP
27 lines
428 B
PHP
<?php
|
|
|
|
namespace Psr\Log;
|
|
|
|
/**
|
|
* Basic Implementation of LoggerAwareInterface.
|
|
*/
|
|
trait LoggerAwareTrait
|
|
{
|
|
/**
|
|
* The logger instance.
|
|
*
|
|
* @var LoggerInterface|null
|
|
*/
|
|
protected $logger;
|
|
|
|
/**
|
|
* Sets a logger.
|
|
*
|
|
* @param LoggerInterface $logger
|
|
*/
|
|
public function setLogger(LoggerInterface $logger)
|
|
{
|
|
$this->logger = $logger;
|
|
}
|
|
}
|