1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-18 15:18:08 +02:00

Fix typos

This commit is contained in:
Jordi Boggiano
2011-04-03 16:43:29 +02:00
parent 7f2127b7dc
commit b90eddd513

View File

@@ -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]);
} }