22 lines
435 B
PHP
22 lines
435 B
PHP
<?php
|
|
|
|
namespace MongoDB\Driver\Monitoring;
|
|
|
|
use MongoDB\BSON\ObjectId;
|
|
|
|
/**
|
|
* @since 1.13.0
|
|
*/
|
|
final class TopologyClosedEvent
|
|
{
|
|
final private function __construct() {}
|
|
|
|
/**
|
|
* Returns the topology ID
|
|
* @link https://www.php.net/manual/en/mongodb-driver-monitoring-topologyclosedevent.gettopologyid.php
|
|
*/
|
|
final public function getTopologyId(): ObjectId {}
|
|
|
|
final public function __wakeup(): void {}
|
|
}
|