Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** @phpstub */ class AMQPChannel { /** * Create an instance of an AMQPCha..
Decoded Output download
<?php
/** @phpstub */
class AMQPChannel
{
/**
* Create an instance of an AMQPChannel object
*
* @param AMQPConnection $amqp_connection
*/
public function __construct($amqp_connection)
{
}
/**
* Commit a pending transaction
*
* @return void
*/
public function commitTransaction()
{
}
/**
* Check the channel connection
*
* @return void
*/
public function isConnected()
{
}
/**
* Set the Quality Of Service settings for the given channel
*
* @param int $size
* @param int $count
*
* @return void
*/
public function qos($size, $count)
{
}
/**
* Rollback a transaction
*
* @return void
*/
public function rollbackTransaction()
{
}
/**
* Set the number of messages to prefetch from the broker
*
* @param int $count
*
* @return void
*/
public function setPrefetchCount($count)
{
}
/**
* Set the window size to prefetch from the broker
*
* @param int $size
*
* @return void
*/
public function setPrefetchSize($size)
{
}
/**
* Start a transaction
*
* @return void
*/
public function startTransaction()
{
}
} ?>
Did this file decode correctly?
Original Code
<?php
/** @phpstub */
class AMQPChannel
{
/**
* Create an instance of an AMQPChannel object
*
* @param AMQPConnection $amqp_connection
*/
public function __construct($amqp_connection)
{
}
/**
* Commit a pending transaction
*
* @return void
*/
public function commitTransaction()
{
}
/**
* Check the channel connection
*
* @return void
*/
public function isConnected()
{
}
/**
* Set the Quality Of Service settings for the given channel
*
* @param int $size
* @param int $count
*
* @return void
*/
public function qos($size, $count)
{
}
/**
* Rollback a transaction
*
* @return void
*/
public function rollbackTransaction()
{
}
/**
* Set the number of messages to prefetch from the broker
*
* @param int $count
*
* @return void
*/
public function setPrefetchCount($count)
{
}
/**
* Set the window size to prefetch from the broker
*
* @param int $size
*
* @return void
*/
public function setPrefetchSize($size)
{
}
/**
* Start a transaction
*
* @return void
*/
public function startTransaction()
{
}
}
Function Calls
None |
Stats
MD5 | d4f52bb2c90e947eb4f3e6055480d1fb |
Eval Count | 0 |
Decode Time | 89 ms |