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 use Rx\Testing\Recorded; use Rx\Testing\Subscription; use Rx\Notification\OnComplet..
Decoded Output download
<?php
use Rx\Testing\Recorded;
use Rx\Testing\Subscription;
use Rx\Notification\OnCompletedNotification;
use Rx\Notification\OnErrorNotification;
use Rx\Notification\OnNextNotification;
function onError($dueTime, $error) {
return new Recorded($dueTime, new OnErrorNotification($error));
}
function onNext($dueTime, $value) {
return new Recorded($dueTime, new OnNextNotification($value));
}
function onCompleted($dueTime) {
return new Recorded($dueTime, new OnCompletedNotification());
}
function subscribe($start, $end = null) {
return new Subscription($start, $end);
}
function RxIdentity($x) {
return $x;
}
?>
Did this file decode correctly?
Original Code
<?php
use Rx\Testing\Recorded;
use Rx\Testing\Subscription;
use Rx\Notification\OnCompletedNotification;
use Rx\Notification\OnErrorNotification;
use Rx\Notification\OnNextNotification;
function onError($dueTime, $error) {
return new Recorded($dueTime, new OnErrorNotification($error));
}
function onNext($dueTime, $value) {
return new Recorded($dueTime, new OnNextNotification($value));
}
function onCompleted($dueTime) {
return new Recorded($dueTime, new OnCompletedNotification());
}
function subscribe($start, $end = null) {
return new Subscription($start, $end);
}
function RxIdentity($x) {
return $x;
}
Function Calls
None |
Stats
MD5 | da9e5a822427c23d455b7e8fcd3a3d05 |
Eval Count | 0 |
Decode Time | 135 ms |