Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove LoggerAwareTrait to resolve null error #277

Merged
merged 1 commit into from
May 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions src/Service/AuthService.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,15 @@
use Nucleos\LastFm\Session\Session;
use Nucleos\LastFm\Session\SessionInterface;
use Psr\Log\LoggerAwareInterface;
use Psr\Log\LoggerAwareTrait;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;

final class AuthService implements LoggerAwareInterface, AuthServiceInterface
{
use LoggerAwareTrait;
/**
* @var LoggerInterface
*/
private $logger;

/**
* @var string
Expand All @@ -41,6 +44,11 @@ public function __construct(ApiClientInterface $connection, string $authUrl = 'h
$this->logger = new NullLogger();
}

public function setLogger(LoggerInterface $logger): void
{
$this->logger = $logger;
}

public function createSession(string $token): ?SessionInterface
{
try {
Expand Down