Skip to content
This repository was archived by the owner on Oct 30, 2024. It is now read-only.

Commit d9a6fdc

Browse files
committed
Fix lint issues
1 parent c6f4324 commit d9a6fdc

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

src/Nats/Connection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,8 +419,8 @@ public function ping()
419419
/**
420420
* Request does a request and executes a callback with the response.
421421
*
422-
* @param string $subject Message topic.
423-
* @param string $payload Message data.
422+
* @param string $subject Message topic.
423+
* @param string $payload Message data.
424424
* @param \Closure $callback Closure to be executed as callback.
425425
*
426426
* @return void

src/Nats/EncodedConnection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ public function __construct(ConnectionOptions $options = null, \Nats\Encoders\En
3232
/**
3333
* Request does a request and executes a callback with the response.
3434
*
35-
* @param string $subject Message topic.
36-
* @param string $payload Message data.
35+
* @param string $subject Message topic.
36+
* @param string $payload Message data.
3737
* @param \Closure $callback Closure to be executed as callback.
3838
*
3939
* @return void

test/ConnectionTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ function ($res) use ($contentLen, $contentSum) {
154154
'saybighello'.$i,
155155
$content,
156156
function ($res) {
157-
158157
}
159158
);
160159

@@ -176,7 +175,6 @@ public function testSetStreamTimeout()
176175
'nonexistantsubject',
177176
'test',
178177
function ($res) {
179-
180178
}
181179
);
182180
$timeTaken = (time() - $before);

0 commit comments

Comments
 (0)