We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04c399a commit 72a5da4Copy full SHA for 72a5da4
src/Database.php
@@ -322,6 +322,10 @@ public function close() : bool
322
* Pings the server, or tries to reconnect if the connection has gone down.
323
*
324
* @return bool
325
+ *
326
+ * @deprecated
327
328
+ * @codeCoverageIgnore
329
*/
330
public function ping() : bool
331
{
tests/DatabaseTest.php
@@ -258,11 +258,6 @@ public function testClose() : void
258
self::assertTrue(static::$database->close());
259
}
260
261
- public function testPing() : void
262
- {
263
- self::assertTrue(static::$database->ping());
264
- }
265
-
266
public function testReconnect() : void
267
268
self::assertInstanceOf(Database::class, static::$database->reconnect());
0 commit comments