mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-10 21:08:41 +00:00
logger fix
This commit is contained in:
parent
8f6c1b5360
commit
13a4d4a1f9
|
|
@ -141,7 +141,7 @@ class ImageProcessor implements \Psr\Log\LoggerAwareInterface
|
|||
/**
|
||||
* @param \Psr\Log\LoggerInterface
|
||||
*
|
||||
* @return self
|
||||
* @return void
|
||||
*/
|
||||
public function setLogger(LoggerInterface $logger)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1552,7 +1552,7 @@ class Mpdf implements \Psr\Log\LoggerAwareInterface
|
|||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function setLogger(LoggerInterface $logger) : void
|
||||
public function setLogger(LoggerInterface $logger)
|
||||
{
|
||||
$this->logger = $logger;
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ class SizeConverter implements \Psr\Log\LoggerAwareInterface
|
|||
$this->logger = $logger;
|
||||
}
|
||||
|
||||
public function setLogger(LoggerInterface $logger) : void
|
||||
public function setLogger(LoggerInterface $logger)
|
||||
{
|
||||
$this->logger = $logger;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,5 +14,5 @@ interface LoggerAwareInterface
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
public function setLogger(LoggerInterface $logger) : void;
|
||||
public function setLogger(LoggerInterface $logger);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user