mirror of
https://github.com/Seldaek/monolog.git
synced 2025-02-23 22:42:38 +01:00
Adjusted method names
This commit is contained in:
parent
1808350061
commit
504e7003e4
@ -50,22 +50,22 @@ class TestHandler extends AbstractHandler
|
||||
return $this->hasMessage($message, Logger::DEBUG);
|
||||
}
|
||||
|
||||
public function hasErrors()
|
||||
public function hasErrorMessages()
|
||||
{
|
||||
return isset($this->messagesByLevel[Logger::ERROR]);
|
||||
}
|
||||
|
||||
public function hasWarnings()
|
||||
public function hasWarningMessages()
|
||||
{
|
||||
return isset($this->messagesByLevel[Logger::WARNING]);
|
||||
}
|
||||
|
||||
public function hasInfos()
|
||||
public function hasInfoMessages()
|
||||
{
|
||||
return isset($this->messagesByLevel[Logger::INFO]);
|
||||
}
|
||||
|
||||
public function hasDebugs()
|
||||
public function hasDebugMessages()
|
||||
{
|
||||
return isset($this->messagesByLevel[Logger::DEBUG]);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user