Fix uncatchable exception on __destruct

This commit is contained in:
RainLoop Team 2013-11-25 21:37:51 +04:00
parent b6b54b2540
commit c10b2183e3

View file

@ -90,9 +90,13 @@ abstract class NetClient
* @return void
*/
public function __destruct()
{
try
{
$this->LogoutAndDisconnect();
}
catch (\Exception $oException) {}
}
/**
* @return void