Skip to content

Commit 80638ee

Browse files
committed
lint
1 parent 95fa303 commit 80638ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integrational/FilesTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -108,14 +108,14 @@ public function testDeleteAllFiles()
108108
}
109109
}
110110

111-
public function testEmptyFileListAfterDelete()
111+
public function testEmptyFileListAfterDelete(): void
112112
{
113113
$response = $this->pubnub->listFiles()->channel($this->channel)->sync();
114114
$this->assertNotEmpty($response);
115115
$this->assertCount(0, $response->getData());
116116
}
117117

118-
public function testThrowErrorOnMalformedResponse()
118+
public function testThrowErrorOnMalformedResponse(): void
119119
{
120120
$this->expectException(PubNubResponseParsingException::class);
121121
$client = new PsrStubClient();
@@ -134,7 +134,7 @@ public function testThrowErrorOnMalformedResponse()
134134
$pubnub->getFileDownloadUrl()->channel($this->channel)->fileId('none')->fileName('none')->sync();
135135
}
136136

137-
public function testThrowErrorOnNoFileFound()
137+
public function testThrowErrorOnNoFileFound(): void
138138
{
139139
$this->expectException(PubNubServerException::class);
140140
$this->pubnub->downloadFile()->channel($this->channel)->fileId('-')->fileName('-')->sync();

0 commit comments

Comments
 (0)