Skip to content

Commit e80f32d

Browse files
committed
QA: Unify @see and @test references in API docs
1 parent 00e30e7 commit e80f32d

19 files changed

+25
-25
lines changed

src/main/php/peer/AuthenticationException.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Indicate an error occured during authentication
55
*
6-
* @see xp://peer.SocketException
6+
* @see peer.SocketException
77
*/
88
class AuthenticationException extends SocketException {
99
public

src/main/php/peer/BSDServerSocket.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* BSDSocket server implementation
55
*
6-
* @see xp://peer.BSDSocket
6+
* @see peer.BSDSocket
77
* @ext sockets
88
*/
99
class BSDServerSocket extends BSDSocket {

src/main/php/peer/BSDSocket.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Provide an interface to the BSD sockets
55
*
6-
* @test xp://peer.unittest.sockets.BSDSocketTest
6+
* @test peer.unittest.sockets.BSDSocketTest
77
* @see php://sockets
88
* @see http://www.developerweb.net/sock-faq/ The UNIX Socket FAQ
99
* @ext sockets

src/main/php/peer/ServerSocket.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
/**
66
* Socket server implementation
77
*
8-
* @see xp://peer.Socket
8+
* @see peer.Socket
99
* @see php://stream_socket_server
10-
* @test xp://peer.unittest.server.ServerTest
10+
* @test peer.unittest.server.ServerTest
1111
*/
1212
class ServerSocket extends Socket {
1313

src/main/php/peer/Socket.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Socket class
88
*
9-
* @test xp://peer.unittest.sockets.SocketTest
9+
* @test peer.unittest.sockets.SocketTest
1010
* @see php://network
1111
*/
1212
class Socket implements Channel, Value {

src/main/php/peer/SocketEndpoint.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
/**
77
* Socket endpoint
88
*
9-
* @test xp://peer.unittest.sockets.SocketEndpointTest
10-
* @test xp://peer.unittest.sockets.AbstractSocketTest
9+
* @test peer.unittest.sockets.SocketEndpointTest
10+
* @test peer.unittest.sockets.AbstractSocketTest
1111
*/
1212
class SocketEndpoint {
1313
protected $host= '';

src/main/php/peer/SocketTimeoutException.class.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
/**
44
* Indicate a timeout occurred on a socket read
55
*
6-
* @test xp:// peer.unittest.sockets.SocketTimeoutExceptionTest
7-
* @see xp://peer.Socket#setTimeout
8-
* @see xp://peer.SocketException
6+
* @test peer.unittest.sockets.SocketTimeoutExceptionTest
7+
* @see peer.Socket#setTimeout
8+
* @see peer.SocketException
99
*/
1010
class SocketTimeoutException extends SocketException {
1111
protected $timeout= 0.0;

src/main/php/peer/URL.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* echo $u->toString();
1616
* ```
1717
*
18-
* @test xp://peer.unittest.URLTest
18+
* @test peer.unittest.URLTest
1919
* @see php://parse_url
2020
*/
2121
class URL implements Value {

src/main/php/peer/net/Inet6Address.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* IPv6 address
88
*
9-
* @test xp://peer.unittest.net.Inet6AddressTest
9+
* @test peer.unittest.net.Inet6AddressTest
1010
*/
1111
class Inet6Address extends InetAddress {
1212
private $addr;

src/main/php/peer/net/NameserverLookup.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* uses php://dns_get_record - a function which is not available on
99
* all platforms in all supported PHP versions.
1010
*
11-
* @test xp://peer.unittest.net.NameserverLookupTest
11+
* @test peer.unittest.net.NameserverLookupTest
1212
* @see php://dns_get_record
1313
*/
1414
class NameserverLookup {

0 commit comments

Comments
 (0)