Fix method signature issue
All checks were successful
Gitea - aviat/banker/pipeline/head This commit looks good
All checks were successful
Gitea - aviat/banker/pipeline/head This commit looks good
This commit is contained in:
parent
f55c9c7c8e
commit
5719b42308
@ -45,7 +45,7 @@ trait LoggerTrait {
|
|||||||
/**
|
/**
|
||||||
* Set a logger to keep track of errors
|
* Set a logger to keep track of errors
|
||||||
*/
|
*/
|
||||||
public function setLogger(LoggerInterface $logger): self
|
public function setLogger(LoggerInterface $logger): void
|
||||||
{
|
{
|
||||||
$this->logger = $logger;
|
$this->logger = $logger;
|
||||||
|
|
||||||
@ -54,7 +54,5 @@ trait LoggerTrait {
|
|||||||
{
|
{
|
||||||
$this->driver->setLogger($logger);
|
$this->driver->setLogger($logger);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -222,7 +222,7 @@ class TellerTest extends TestCase {
|
|||||||
$this->teller->get($key);
|
$this->teller->get($key);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function keyValidationTests(): array
|
public static function keyValidationTests(): array
|
||||||
{
|
{
|
||||||
// {}()/@:\\\
|
// {}()/@:\\\
|
||||||
return [
|
return [
|
||||||
|
Loading…
Reference in New Issue
Block a user