JOOMLA中国
  • Joomla中国首页
  • 社区
  • 教程
  • 应用市场
  • B计划
Joomla! Framework TM
  • Namespace
  • Class
  • Tree
  • Deprecated

Namespaces

  • Composer
    • Autoload
  • Joomla
    • Application
      • Cli
        • Output
          • Processor
      • Web
    • Data
    • DI
      • Exception
    • Event
    • Filter
    • Input
    • Ldap
    • Registry
      • Format
    • Session
      • Storage
    • String
    • Uri
    • Utilities
  • None
  • PasswordCompat
    • binary
  • PHP
  • Psr
    • Log
  • Symfony
    • Component
      • Yaml
        • Exception
    • Polyfill
      • Util

Classes

  • Container

Interfaces

  • ContainerAwareInterface
  • ServiceProviderInterface

Traits

  • ContainerAwareTrait
 1 <?php
 2 /**
 3  * Part of the Joomla Framework DI Package
 4  *
 5  * @copyright  Copyright (C) 2013 - 2016 Open Source Matters, Inc. All rights reserved.
 6  * @license    GNU General Public License version 2 or later; see LICENSE
 7  */
 8 
 9 namespace Joomla\DI;
10 
11 /**
12  * Defines the interface for a Service Provider.
13  *
14  * @since  1.0
15  */
16 interface ServiceProviderInterface
17 {
18     /**
19      * Registers the service provider with a DI container.
20      *
21      * @param   Container  $container  The DI container.
22      *
23      * @return  void
24      *
25      * @since   1.0
26      */
27     public function register(Container $container);
28 }
29 
Joomla! Framework TM API documentation generated by ApiGen 2.8.0
Joomla!® and Joomla! Framework™ are trademarks of Open Source Matters, Inc. in the United States and other countries.