Skip to content

Commit 50fe7f3

Browse files
committed
Remove obsolete Context methods
These methods should have been removed in f2cfb9f (PHPLIB-879) and 20e8f91 (PHPLIB-652).
1 parent b1ffe89 commit 50fe7f3

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

tests/SpecTests/Context.php

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,6 @@ public function enableEncryption(): void
8888
$this->useEncryptedClient = true;
8989
}
9090

91-
public static function fromChangeStreams(stdClass $test, $databaseName, $collectionName)
92-
{
93-
$o = new self($databaseName, $collectionName);
94-
95-
$o->client = FunctionalTestCase::createTestClient();
96-
97-
return $o;
98-
}
99-
10091
public static function fromClientSideEncryption(stdClass $test, $databaseName, $collectionName)
10192
{
10293
$o = new self($databaseName, $collectionName);
@@ -145,15 +136,6 @@ public static function fromClientSideEncryption(stdClass $test, $databaseName, $
145136
return $o;
146137
}
147138

148-
public static function fromCommandMonitoring(stdClass $test, $databaseName, $collectionName)
149-
{
150-
$o = new self($databaseName, $collectionName);
151-
152-
$o->client = FunctionalTestCase::createTestClient();
153-
154-
return $o;
155-
}
156-
157139
public static function fromCrud(stdClass $test, $databaseName, $collectionName)
158140
{
159141
$o = new self($databaseName, $collectionName);

0 commit comments

Comments
 (0)