Skip to content

Commit 5fbcf75

Browse files
[HttpKernel] Remove wrong docblock
1 parent e2d9b15 commit 5fbcf75

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

DataCollector/LoggerDataCollector.php

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,6 @@ public function lateCollect()
5050
}
5151
}
5252

53-
/**
54-
* Gets the called events.
55-
*
56-
* @return array An array of called events
57-
*
58-
* @see TraceableEventDispatcherInterface
59-
*/
60-
public function countErrors()
61-
{
62-
return isset($this->data['error_count']) ? $this->data['error_count'] : 0;
63-
}
64-
6553
/**
6654
* Gets the logs.
6755
*
@@ -77,6 +65,11 @@ public function getPriorities()
7765
return isset($this->data['priorities']) ? $this->data['priorities'] : array();
7866
}
7967

68+
public function countErrors()
69+
{
70+
return isset($this->data['error_count']) ? $this->data['error_count'] : 0;
71+
}
72+
8073
public function countDeprecations()
8174
{
8275
return isset($this->data['deprecation_count']) ? $this->data['deprecation_count'] : 0;

0 commit comments

Comments
 (0)