Files
faveo/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PingableConnection.php
RafficMohammed da241bacb6 updated-packages
2023-01-08 00:13:22 +05:30

20 lines
389 B
PHP

<?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();
}