File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -108,14 +108,14 @@ public function testDeleteAllFiles()
108
108
}
109
109
}
110
110
111
- public function testEmptyFileListAfterDelete ()
111
+ public function testEmptyFileListAfterDelete (): void
112
112
{
113
113
$ response = $ this ->pubnub ->listFiles ()->channel ($ this ->channel )->sync ();
114
114
$ this ->assertNotEmpty ($ response );
115
115
$ this ->assertCount (0 , $ response ->getData ());
116
116
}
117
117
118
- public function testThrowErrorOnMalformedResponse ()
118
+ public function testThrowErrorOnMalformedResponse (): void
119
119
{
120
120
$ this ->expectException (PubNubResponseParsingException::class);
121
121
$ client = new PsrStubClient ();
@@ -134,7 +134,7 @@ public function testThrowErrorOnMalformedResponse()
134
134
$ pubnub ->getFileDownloadUrl ()->channel ($ this ->channel )->fileId ('none ' )->fileName ('none ' )->sync ();
135
135
}
136
136
137
- public function testThrowErrorOnNoFileFound ()
137
+ public function testThrowErrorOnNoFileFound (): void
138
138
{
139
139
$ this ->expectException (PubNubServerException::class);
140
140
$ this ->pubnub ->downloadFile ()->channel ($ this ->channel )->fileId ('- ' )->fileName ('- ' )->sync ();
You can’t perform that action at this time.
0 commit comments