File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -30,18 +30,18 @@ public function getVersionProvider()
30
30
*/
31
31
public function testGetVersion (string $ input , string $ output )
32
32
{
33
- $ this -> assertSame ($ output , ApiSettings::getVersion ($ input ));
33
+ self :: assertSame ($ output , ApiSettings::getVersion ($ input ));
34
34
}
35
35
36
36
public function testGetVersionDefault ()
37
37
{
38
- $ this -> assertTrue (strlen (ApiSettings::getVersion ()) > 0 );
38
+ self :: assertTrue (strlen (ApiSettings::getVersion ()) > 0 );
39
39
}
40
40
41
41
public function testCreateUrl ()
42
42
{
43
43
$ expectedUrl = 'wss://ws.pusherapp.com/app/barBaz?client=api-clients%2Fpusher+%28https%3A%2F%2Fphp-api-clients.org%2Fclients%2Fpusher%29&protocol=7&version= ' . ApiSettings::getVersion ();
44
44
45
- $ this -> assertSame ($ expectedUrl , ApiSettings::createUrl ('barBaz ' ));
45
+ self :: assertSame ($ expectedUrl , ApiSettings::createUrl ('barBaz ' ));
46
46
}
47
47
}
Original file line number Diff line number Diff line change @@ -9,6 +9,6 @@ final class AsyncClientTest extends TestCase
9
9
{
10
10
public function testTrue ()
11
11
{
12
- $ this -> assertTrue (true );
12
+ self :: assertTrue (true );
13
13
}
14
14
}
Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ final class SharedAppClientCommandTest extends TestCase
10
10
public function testGetApp ()
11
11
{
12
12
$ appId = uniqid ('app-id- ' , true );
13
- $ this -> assertSame ($ appId , (new SharedAppClientCommand ($ appId ))->getAppId ());
13
+ self :: assertSame ($ appId , (new SharedAppClientCommand ($ appId ))->getAppId ());
14
14
}
15
15
}
You can’t perform that action at this time.
0 commit comments