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 Pagekit\Filter; class FilterChain implements \Countable, FilterInterface..

Decoded Output download

<?php

namespace Pagekit\Filter;

class FilterChain implements \Countable, FilterInterface
{
    /**
     * Default priority at which filters are added
     */
    const DEFAULT_PRIORITY = 1000;

    /**
     * Filter chain
     *
     * @var \SplPriorityQueue
     */
    protected $filters;

    /**
     * Constructor.
     */
    public function __construct()
    {
        $this->filters = new \SplPriorityQueue;
    }

    /**
     * Return the count of attached filters
     *
     * @return int
     */
    public function count()
    {
        return count($this->filters);
    }

    /**
     * Attach a filter to the chain
     *
     * @param  callable|FilterInterface $callback
     * @param  int $priority
     * @throws \InvalidArgumentException
     * @return FilterChain
     */
    public function attach($callback, $priority = self::DEFAULT_PRIORITY)
    {
        if (!is_callable($callback)) {
            if (!$callback instanceof FilterInterface) {
                throw new \InvalidArgumentException(sprintf('Expected a valid PHP callback; received "%s"', (is_object($callback) ? get_class($callback) : gettype($callback))));
            }
            $callback = [$callback, 'filter'];
        }
        $this->filters->insert($callback, $priority);

        return $this;
    }

    /**
     * Merge the filter chain with the one given in parameter
     *
     * @param  FilterChain $filterChain
     * @return FilterChain
     */
    public function merge(FilterChain $filterChain)
    {
        foreach ($filterChain->getFilters() as $filter) {
            $this->attach($filter);
        }

        return $this;
    }

    /**
     * Get all the filters.
     *
     * @return \SplPriorityQueue
     */
    public function getFilters()
    {
        return $this->filters;
    }

    /**
     * Returns $value filtered through each filter in the chain.
     *
     * @param  mixed $value
     * @return mixed
     */
    public function filter($value)
    {
        $chain = clone $this->filters;

        $valueFiltered = $value;
        foreach ($chain as $filter) {
            $valueFiltered = call_user_func($filter, $valueFiltered);
        }

        return $valueFiltered;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Pagekit\Filter;

class FilterChain implements \Countable, FilterInterface
{
    /**
     * Default priority at which filters are added
     */
    const DEFAULT_PRIORITY = 1000;

    /**
     * Filter chain
     *
     * @var \SplPriorityQueue
     */
    protected $filters;

    /**
     * Constructor.
     */
    public function __construct()
    {
        $this->filters = new \SplPriorityQueue;
    }

    /**
     * Return the count of attached filters
     *
     * @return int
     */
    public function count()
    {
        return count($this->filters);
    }

    /**
     * Attach a filter to the chain
     *
     * @param  callable|FilterInterface $callback
     * @param  int $priority
     * @throws \InvalidArgumentException
     * @return FilterChain
     */
    public function attach($callback, $priority = self::DEFAULT_PRIORITY)
    {
        if (!is_callable($callback)) {
            if (!$callback instanceof FilterInterface) {
                throw new \InvalidArgumentException(sprintf('Expected a valid PHP callback; received "%s"', (is_object($callback) ? get_class($callback) : gettype($callback))));
            }
            $callback = [$callback, 'filter'];
        }
        $this->filters->insert($callback, $priority);

        return $this;
    }

    /**
     * Merge the filter chain with the one given in parameter
     *
     * @param  FilterChain $filterChain
     * @return FilterChain
     */
    public function merge(FilterChain $filterChain)
    {
        foreach ($filterChain->getFilters() as $filter) {
            $this->attach($filter);
        }

        return $this;
    }

    /**
     * Get all the filters.
     *
     * @return \SplPriorityQueue
     */
    public function getFilters()
    {
        return $this->filters;
    }

    /**
     * Returns $value filtered through each filter in the chain.
     *
     * @param  mixed $value
     * @return mixed
     */
    public function filter($value)
    {
        $chain = clone $this->filters;

        $valueFiltered = $value;
        foreach ($chain as $filter) {
            $valueFiltered = call_user_func($filter, $valueFiltered);
        }

        return $valueFiltered;
    }
}

Function Calls

None

Variables

None

Stats

MD5 75d5b91310b7273001e9ea8531c0bf9f
Eval Count 0
Decode Time 72 ms