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 HttpRequestPool implements \Iterator, \Countable { /** ..
Decoded Output download
<?php
/** @phpstub */
class HttpRequestPool implements \Iterator, \Countable
{
/**
* HttpRequestPool constructor
*
* @phpstub-variable-parameters
*
* @param HttpRequest $request
* @param HttpRequest $_
*/
public function __construct($request = NULL, $_ = NULL)
{
}
/**
* HttpRequestPool destructor
*
* @return void
*/
public function __destruct()
{
}
/**
* Attach HttpRequest
*
* @param HttpRequest $request
*
* @return bool
*/
public function attach($request)
{
}
/**
* Detach HttpRequest
*
* @param HttpRequest $request
*
* @return bool
*/
public function detach($request)
{
}
/**
* Get attached requests
*
* @return array Returns an array containing all currently attached ``HttpRequest`` objects.
*/
public function getAttachedRequests()
{
}
/**
* Get finished requests
*
* @return array Returns an array containing all attached ``HttpRequest`` objects that already have finished their work.
*/
public function getFinishedRequests()
{
}
/**
* Reset request pool
*
* @return void
*/
public function reset()
{
}
/**
* Send all requests
*
* @return bool
*/
public function send()
{
}
/**
* Perform socket actions
*
* @return bool Returns true until each request has finished its transaction.
*/
public function socketPerform()
{
}
/**
* Perform socket select
*
* @param float $timeout
*
* @return bool
*/
public function socketSelect($timeout = false)
{
}
} ?>
Did this file decode correctly?
Original Code
<?php
/** @phpstub */
class HttpRequestPool implements \Iterator, \Countable
{
/**
* HttpRequestPool constructor
*
* @phpstub-variable-parameters
*
* @param HttpRequest $request
* @param HttpRequest $_
*/
public function __construct($request = NULL, $_ = NULL)
{
}
/**
* HttpRequestPool destructor
*
* @return void
*/
public function __destruct()
{
}
/**
* Attach HttpRequest
*
* @param HttpRequest $request
*
* @return bool
*/
public function attach($request)
{
}
/**
* Detach HttpRequest
*
* @param HttpRequest $request
*
* @return bool
*/
public function detach($request)
{
}
/**
* Get attached requests
*
* @return array Returns an array containing all currently attached ``HttpRequest`` objects.
*/
public function getAttachedRequests()
{
}
/**
* Get finished requests
*
* @return array Returns an array containing all attached ``HttpRequest`` objects that already have finished their work.
*/
public function getFinishedRequests()
{
}
/**
* Reset request pool
*
* @return void
*/
public function reset()
{
}
/**
* Send all requests
*
* @return bool
*/
public function send()
{
}
/**
* Perform socket actions
*
* @return bool Returns true until each request has finished its transaction.
*/
public function socketPerform()
{
}
/**
* Perform socket select
*
* @param float $timeout
*
* @return bool
*/
public function socketSelect($timeout = false)
{
}
}
Function Calls
None |
Stats
MD5 | 0248d7b014fc4fb4a2367e8048b53eea |
Eval Count | 0 |
Decode Time | 96 ms |