Jackalope\Transport\DoctrineDBAL\Client::setTransactionTimeout PHP Method

setTransactionTimeout() public method

Sets the default transaction timeout
public setTransactionTimeout ( integer $seconds )
$seconds integer The value of the timeout in seconds
    public function setTransactionTimeout($seconds)
    {
        $this->assertLoggedIn();
        throw new NotImplementedException("Setting a transaction timeout is not yet implemented");
    }

Usage Example

コード例 #1
0
ファイル: LoggingClient.php プロジェクト: nikophil/cmf-tests
 /**
  * {@inheritDoc}
  */
 public function setTransactionTimeout($seconds)
 {
     return $this->transport->setTransactionTimeout($seconds);
 }