Your IP : 13.58.44.229


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

<?php

namespace Dhii\Di;

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

/**
 * Common public functionality.
 *
 * @since 0.1
 */
abstract class AbstractContainerBase extends AbstractContainer
{
    /**
     * Checks if a service exists with a specific ID.
     *
     * @since 0.1
     * @see BaseContainerInterface::has()
     *
     * @param string $id The ID of the service to check for.
     *
     * @return bool True if a service exists with the given ID; false otherwise.
     */
    public function has($id)
    {
        return $this->_has($id);
    }

    /**
     * Retrieves the service with a specific ID.
     *
     * @since 0.1
     * @see BaseContainerInterface::get()
     *
     * @param string $id The ID of the service to retrieve.
     *
     * @throws NotFoundException If no service with the given ID exists in the container.
     *
     * @return mixed The service with the matching ID.
     */
    public function get($id)
    {
        return $this->_get($id);
    }

    /**
     * {@inheritdoc}
     *
     * @since 0.1
     */
    public function make($id, array $config = array())
    {
        return $this->_make($id, $config);
    }

    /**
     * {@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);
    }
}