N°5809 Update apereo/phpcas from 1.6.0 to 1.6.1

This commit is contained in:
Pierre Goiffon
2024-01-25 15:00:09 +01:00
parent 7a5ce8cd6b
commit 71d9710322
25 changed files with 141 additions and 326 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace Psr\Log;
/**
* This is a simple Logger implementation that other Loggers can inherit from.
*
* It simply delegates all log-level-specific methods to the `log` method to
* reduce boilerplate code that a simple Logger that does the same thing with
* messages regardless of the error level has to implement.
*/
abstract class AbstractLogger implements LoggerInterface
{
use LoggerTrait;
}