Skip to content

Commit bc2ca54

Browse files
committed
Fix CS
1 parent a8d5785 commit bc2ca54

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

bin/serve.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
'address' => null,
5050
];
5151

52+
/** @phpstan-ignore-next-line */
5253
$options = array_merge($options, getopt('t::a::', ['type::', 'address::']));
5354
$type = $options['type'];
5455
$address = $options['address'];
@@ -143,7 +144,6 @@ function (MessageTransmitter $transmitter, InitializeParams $params) use ($logge
143144
), $logger);
144145

145146
if ($type === 'tcp') {
146-
/** @phpstan-ignore-next-line */
147147
$builder->tcpServer((string)$address);
148148
}
149149
$builder

tests/Unit/Core/Rpc/RequestMessageFactoryTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
use Phpactor\TestUtils\PHPUnit\TestCase;
1010
use Phpactor\LanguageServer\Core\Rpc\RawMessage;
1111
use Phpactor\LanguageServer\Core\Rpc\RequestMessageFactory;
12-
use RuntimeException;
1312

1413
class RequestMessageFactoryTest extends TestCase
1514
{

0 commit comments

Comments
 (0)