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\Operator; use Rx\ObservableInterface; use Rx\Observer\CallbackObserve..
Decoded Output download
<?php
namespace Rx\Operator;
use Rx\ObservableInterface;
use Rx\Observer\CallbackObserver;
use Rx\ObserverInterface;
use Rx\SchedulerInterface;
class SkipLastOperator implements OperatorInterface
{
/** @var integer */
private $count;
/** @var array */
private $q;
/**
* SkipLastOperator constructor.
* @param $count
* @throws
*/
public function __construct($count)
{
$this->count = $count;
if ($this->count < 0) {
throw new \InvalidArgumentException("Argument Out of Range");
}
}
/**
* @inheritDoc
*/
public function __invoke(ObservableInterface $observable, ObserverInterface $observer, SchedulerInterface $scheduler = null)
{
$this->q = [];
$cbObserver = new CallbackObserver(
function ($x) use ($observer) {
$this->q[] = $x;
if (count($this->q) > $this->count) {
$observer->onNext(array_shift($this->q));
}
},
[$observer, 'onError'],
[$observer, 'onCompleted']
);
return $observable->subscribe($cbObserver, $scheduler);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Rx\Operator;
use Rx\ObservableInterface;
use Rx\Observer\CallbackObserver;
use Rx\ObserverInterface;
use Rx\SchedulerInterface;
class SkipLastOperator implements OperatorInterface
{
/** @var integer */
private $count;
/** @var array */
private $q;
/**
* SkipLastOperator constructor.
* @param $count
* @throws
*/
public function __construct($count)
{
$this->count = $count;
if ($this->count < 0) {
throw new \InvalidArgumentException("Argument Out of Range");
}
}
/**
* @inheritDoc
*/
public function __invoke(ObservableInterface $observable, ObserverInterface $observer, SchedulerInterface $scheduler = null)
{
$this->q = [];
$cbObserver = new CallbackObserver(
function ($x) use ($observer) {
$this->q[] = $x;
if (count($this->q) > $this->count) {
$observer->onNext(array_shift($this->q));
}
},
[$observer, 'onError'],
[$observer, 'onCompleted']
);
return $observable->subscribe($cbObserver, $scheduler);
}
}
Function Calls
None |
Stats
MD5 | 48d60e596eb266ab962e7e4414389765 |
Eval Count | 0 |
Decode Time | 118 ms |