montée php8.1, ubuntu 22.04

This commit is contained in:
2022-04-07 14:35:36 +02:00
parent 12ededccc9
commit 08717e42d9
17 changed files with 419 additions and 22 deletions

View File

@@ -0,0 +1,18 @@
<?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);
}