You are here

ContainerInterface.php in Service Container 7.2

File

src/DependencyInjection/ContainerInterface.php
View source
<?php

/**
 * @file
 * Contains \Drupal\service_container\DependencyInjection\ContainerInterface.
 */
namespace Drupal\service_container\DependencyInjection;

use Drupal\Component\Plugin\Discovery\DiscoveryInterface;
use Symfony\Component\DependencyInjection\IntrospectableContainerInterface;

/**
 * Simple DI Container Interface used to get services and discover definitions.
 *
 * @ingroup dic
 */
interface ContainerInterface extends DiscoveryInterface, IntrospectableContainerInterface {

}

Interfaces

Namesort descending Description
ContainerInterface Simple DI Container Interface used to get services and discover definitions.