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 namespace Rx\Notification; use Rx\ObserverInterface; use Rx\Notification; class O..
Decoded Output download
<?php
namespace Rx\Notification;
use Rx\ObserverInterface;
use Rx\Notification;
class OnCompletedNotification extends Notification
{
public function __construct()
{
parent::__construct('C');
}
protected function doAcceptObservable(ObserverInterface $observer)
{
$observer->onCompleted();
}
protected function doAccept($onNext, $onError, $onCompleted)
{
$onCompleted();
}
public function __toString()
{
return 'OnCompleted()';
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Rx\Notification;
use Rx\ObserverInterface;
use Rx\Notification;
class OnCompletedNotification extends Notification
{
public function __construct()
{
parent::__construct('C');
}
protected function doAcceptObservable(ObserverInterface $observer)
{
$observer->onCompleted();
}
protected function doAccept($onNext, $onError, $onCompleted)
{
$onCompleted();
}
public function __toString()
{
return 'OnCompleted()';
}
}
Function Calls
None |
Stats
MD5 | 1b13d9e7e07963f2d22572f593d1f1c3 |
Eval Count | 0 |
Decode Time | 107 ms |