Source for file ServiceProviderInterface.php

Documentation is available at ServiceProviderInterface.php

  1. <?php
  2. /**
  3.  * Part of the Joomla Framework DI Package
  4.  *
  5.  * @copyright  Copyright (C) 2013 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. {
  17.     /**
  18.      * Registers the service provider with a DI container.
  19.      *
  20.      * @param   Container  $container  The DI container.
  21.      *
  22.      * @return  Container  Returns itself to support chaining.
  23.      *
  24.      * @since   1.0
  25.      */
  26.     public function register(Container $container);
  27. }

Documentation generated on Tue, 19 Nov 2013 15:12:50 +0100 by phpDocumentor 1.4.3