Skip to content

Commit 1c28506

Browse files
committed
change method visibility
1 parent c2a3541 commit 1c28506

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/php-bufflog/BuffLog.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function critical($message)
4747
$this->getLogger()->critical($message);
4848
}
4949

50-
protected function createLogger()
50+
private function createLogger()
5151
{
5252
$logger = new Logger('php-bufflog');
5353
$handler = new MonologStreamHandler('php://stdout', Logger::INFO);
@@ -57,7 +57,7 @@ protected function createLogger()
5757
return $logger;
5858
}
5959

60-
public function getLogger()
60+
private function getLogger()
6161
{
6262
if (!isset($this->logger)) {
6363
$this->logger = $this->createLogger();

0 commit comments

Comments
 (0)