mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-25 01:02:18 +08:00
18 lines
331 B
PHP
18 lines
331 B
PHP
<?php
|
|
|
|
namespace WooCommerce\PayPalCommerce\Vendor\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);
|
|
}
|