Your IP : 3.138.122.11


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/ContainerWithMutableParent.php

<?php

namespace Dhii\Di;

use Interop\Container\ContainerInterface as BaseContainerInterface;

/**
 * A container that can have its parent changed after initialization.
 *
 * @since 0.1
 */
class ContainerWithMutableParent extends ContainerWithImmutableParent
{
    /**
     * Sets the parent container.
     *
     * @since 0.1
     *
     * @param BaseContainerInterface $container The container to become this instance's parent.
     *
     * @return $this This instance.
     */
    public function setParentContainer(BaseContainerInterface $container)
    {
        $this->_setParentContainer($container);

        return $this;
    }
}