Your IP : 3.15.18.198


Current Path : /proc/self/root/home/sudancam/public_html/wp-content/plugins/wp-rss-aggregator/vendor/dhii/di/src/
Upload File :
Current File : //proc/self/root/home/sudancam/public_html/wp-content/plugins/wp-rss-aggregator/vendor/dhii/di/src/CompositeContainer.php

<?php

namespace Dhii\Di;

use Exception;
use Dhii\Di\Exception\ContainerException;
use Dhii\Di\Exception\NotFoundException;
use Interop\Container\ContainerInterface as BaseContainerInterface;

/**
 * Concrete implementation of a container that can have child containers.
 *
 * @since 0.1
 */
class CompositeContainer extends AbstractCompositeContainer implements
    ParentAwareContainerInterface,
    WritableCompositeContainerInterface
{
    /**
     * Constructor.
     *
     * @since 0.1
     *
     * @param BaseContainerInterface $parent The parent container of this instance.
     */
    public function __construct(BaseContainerInterface $parent = null)
    {
        $this->_setParentContainer($parent);
    }

    /**
     * {@inheritdoc}
     *
     * @since 0.1
     */
    public function get($id)
    {
        return $this->_getDelegated($id);
    }

    /**
     * {@inheritdoc}
     *
     * @since 0.1
     */
    public function has($id)
    {
        return $this->_hasDelegated($id);
    }

    /**
     * {@inheritdoc}
     *
     * @since 0.1
     */
    public function getParentContainer()
    {
        return $this->_getParentContainer();
    }

    /**
     * {@inheritdoc}
     *
     * @since 0.1
     */
    public function getContainers()
    {
        return $this->_getContainers();
    }

    /**
     * Adds a child container.
     *
     * @since 0.1
     *
     * @param BaseContainerInterface $container The container to add.
     *
     * @return $this This instance.
     */
    public function add(BaseContainerInterface $container)
    {
        $this->_add($container);

        return $this;
    }

    /**
     * {@inheritdoc}
     *
     * @since 0.1
     *
     * @return NotFoundException The new exception instance.
     */
    protected function _createNotFoundException($message, $code = 0, Exception $innerException = null)
    {
        return new NotFoundException($message, $code, $innerException);
    }

    /**
     * {@inheritdoc}
     *
     * @since 0.1
     *
     * @return ContainerException The new exception instance.
     */
    protected function _createContainerException($message, $code = 0, Exception $innerException = null)
    {
        return new ContainerException($message, $code, $innerException);
    }
}