1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-05 04:37:38 +02:00

Remove Not in method name

Apparently there is check whether function should be skipped (positive).
This commit is contained in:
Frederik Bosch
2015-08-11 11:54:26 +02:00
parent 8b2df20b95
commit 0ae159e892

View File

@@ -61,7 +61,7 @@ class IntrospectionProcessor
$i = 0;
while ($this->isTraceClassOrNotSkippedFunction($trace, $i)) {
while ($this->isTraceClassOrSkippedFunction($trace, $i)) {
if (isset($trace[$i]['class'])) {
foreach ($this->skipClassesPartials as $part) {
if (strpos($trace[$i]['class'], $part) !== false) {
@@ -91,7 +91,7 @@ class IntrospectionProcessor
return $record;
}
private function isTraceClassOrNotSkippedFunction ($trace, $index)
private function isTraceClassOrSkippedFunction ($trace, $index)
{
if (isset($trace[$index]) === false) {
return false;