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