1
0
mirror of https://github.com/xPaw/PHP-Source-Query.git synced 2026-05-18 13:53:35 +02:00

Fix up some type information

This commit is contained in:
Pavel Djundik
2020-06-23 19:44:51 +03:00
parent 1078e47b7e
commit b87c9faab9
5 changed files with 23 additions and 10 deletions
+2 -2
View File
@@ -71,7 +71,7 @@
{
$this->Socket = new TestableSocket();
$this->SourceQuery = new SourceQuery( $this->Socket );
$this->SourceQuery->Connect( 1, 2 );
$this->SourceQuery->Connect( '', 2 );
}
public function tearDown()
@@ -87,7 +87,7 @@
public function testInvalidTimeout()
{
$SourceQuery = new SourceQuery( );
$SourceQuery->Connect( 1, 2, -1 );
$SourceQuery->Connect( '', 2, -1 );
}
/**