mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2024-11-24 22:02:22 +08:00
20 lines
389 B
PHP
Executable File
20 lines
389 B
PHP
Executable File
<?php
|
|
|
|
namespace Doctrine\DBAL\Driver;
|
|
|
|
/**
|
|
* An interface for connections which support a "native" ping method.
|
|
*
|
|
* @deprecated
|
|
*/
|
|
interface PingableConnection
|
|
{
|
|
/**
|
|
* Pings the database server to determine if the connection is still
|
|
* available. Return true/false based on if that was successful or not.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function ping();
|
|
}
|