Skip to content

Commit e7b5002

Browse files
committed
style fixes
1 parent 97f7943 commit e7b5002

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

Collector/DebugPluginCollector.php

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ final class DebugPluginCollector extends DataCollector
2828
private $journal;
2929

3030
/**
31-
* @param Formatter $formatter
31+
* @param Formatter $formatter
3232
* @param PluginJournal $journal
3333
*/
3434
public function __construct(Formatter $formatter, PluginJournal $journal)
@@ -39,8 +39,8 @@ public function __construct(Formatter $formatter, PluginJournal $journal)
3939

4040
/**
4141
* @param RequestInterface $request
42-
* @param string $clientName
43-
* @param int $depth
42+
* @param string $clientName
43+
* @param int $depth
4444
*/
4545
public function addRequest(RequestInterface $request, $clientName, $depth)
4646
{
@@ -49,8 +49,8 @@ public function addRequest(RequestInterface $request, $clientName, $depth)
4949

5050
/**
5151
* @param ResponseInterface $response
52-
* @param string $clientName
53-
* @param int $depth
52+
* @param string $clientName
53+
* @param int $depth
5454
*/
5555
public function addResponse(ResponseInterface $response, $clientName, $depth)
5656
{
@@ -60,8 +60,8 @@ public function addResponse(ResponseInterface $response, $clientName, $depth)
6060

6161
/**
6262
* @param Exception $exception
63-
* @param string $clientName
64-
* @param int $depth
63+
* @param string $clientName
64+
* @param int $depth
6565
*/
6666
public function addFailure(Exception $exception, $clientName, $depth)
6767
{
@@ -86,7 +86,6 @@ public function getSucessfulRequests()
8686
{
8787
$count = 0;
8888
foreach ($this->data as $client) {
89-
9089
if (isset($client['failure'])) {
9190
foreach ($client['failure'][0] as $failure) {
9291
if (!$failure) {
@@ -108,7 +107,6 @@ public function getFailedRequests()
108107
{
109108
$count = 0;
110109
foreach ($this->data as $client) {
111-
112110
if (isset($client['failure'])) {
113111
foreach ($client['failure'][0] as $failure) {
114112
if ($failure) {

Collector/PluginJournal.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function getPlugins($clientName)
2626

2727
/**
2828
* @param string $clientName
29-
* @param int $idx
29+
* @param int $idx
3030
*
3131
* @return string|null
3232
*/

Collector/RequestStackProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ final class RequestStackProvider
3838
private $responses;
3939

4040
/**
41-
* @param array $failures if the response was successful or not
41+
* @param array $failures if the response was successful or not
4242
* @param array $requests
4343
* @param array $responses
4444
*/

0 commit comments

Comments
 (0)