Files
.github
admin
docs
install
pages_template
qrcode
scan
system
autoload
cache
controllers
devices
lan
paymentgateway
plugin
uploads
vendor
composer
mpdf
mpdf
psr-log-aware-trait
src
.gitignore
README.md
composer.json
myclabs
paragonie
psr
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
mitrobill/system/vendor/mpdf/psr-log-aware-trait/README.md

21 lines
662 B
Markdown
Raw Normal View History

2023-06-15 10:17:00 +07:00
# psr-log-aware-trait
Trait to allow support of different psr/log versions.
By including this PsrLogAwareTrait, you can allow composer to resolve your PsrLogger version for you.
## Use
Require the trait.
composer require chromatic/psr-log-aware-trait
In your code, you no longer have to set a $logger property on your classes, since that comes with the trait, and you do not need to implement the `function setLogger()` method, since that also comes along with the trait.
```php
use PsrLogAwareTrait;
```
Will allow you to call `setLogger()` in your classes and fulfil the requirements of the PsrLoggerAwareInterface implementation.