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 OnNextNotification extends Notification
{
private $value;
public function __construct($value)
{
parent::__construct('N', true);
$this->value = $value;
}
protected function doAcceptObservable(ObserverInterface $observer)
{
$observer->onNext($this->value);
}
protected function doAccept($onNext, $onError, $onCompleted)
{
$onNext($this->value);
}
public function __toString()
{
return 'OnNext(' . json_encode($this->value) . ')';
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Rx\Notification;
use Rx\ObserverInterface;
use Rx\Notification;
class OnNextNotification extends Notification
{
private $value;
public function __construct($value)
{
parent::__construct('N', true);
$this->value = $value;
}
protected function doAcceptObservable(ObserverInterface $observer)
{
$observer->onNext($this->value);
}
protected function doAccept($onNext, $onError, $onCompleted)
{
$onNext($this->value);
}
public function __toString()
{
return 'OnNext(' . json_encode($this->value) . ')';
}
}
Function Calls
None |
Stats
MD5 | fa74a226b59589c696f2f2c078220152 |
Eval Count | 0 |
Decode Time | 98 ms |