mirror of
https://github.com/Seldaek/monolog.git
synced 2025-10-18 15:18:08 +02:00
Fix typos
This commit is contained in:
@@ -50,22 +50,22 @@ class TestHandler extends AbstractHandler
|
|||||||
return $this->hasRecord($record, Logger::DEBUG);
|
return $this->hasRecord($record, Logger::DEBUG);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function hasErrorrecords()
|
public function hasErrorRecords()
|
||||||
{
|
{
|
||||||
return isset($this->recordsByLevel[Logger::ERROR]);
|
return isset($this->recordsByLevel[Logger::ERROR]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function hasWarningrecords()
|
public function hasWarningRecords()
|
||||||
{
|
{
|
||||||
return isset($this->recordsByLevel[Logger::WARNING]);
|
return isset($this->recordsByLevel[Logger::WARNING]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function hasInforecords()
|
public function hasInfoRecords()
|
||||||
{
|
{
|
||||||
return isset($this->recordsByLevel[Logger::INFO]);
|
return isset($this->recordsByLevel[Logger::INFO]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function hasDebugrecords()
|
public function hasDebugRecords()
|
||||||
{
|
{
|
||||||
return isset($this->recordsByLevel[Logger::DEBUG]);
|
return isset($this->recordsByLevel[Logger::DEBUG]);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user