Refactoring
This commit is contained in:
22
lib/composer/vendor/league/container/src/ImmutableContainerAwareInterface.php
vendored
Normal file
22
lib/composer/vendor/league/container/src/ImmutableContainerAwareInterface.php
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace League\Container;
|
||||
|
||||
use Interop\Container\ContainerInterface as InteropContainerInterface;
|
||||
|
||||
interface ImmutableContainerAwareInterface
|
||||
{
|
||||
/**
|
||||
* Set a container
|
||||
*
|
||||
* @param \Interop\Container\ContainerInterface $container
|
||||
*/
|
||||
public function setContainer(InteropContainerInterface $container);
|
||||
|
||||
/**
|
||||
* Get the container
|
||||
*
|
||||
* @return \League\Container\ImmutableContainerInterface
|
||||
*/
|
||||
public function getContainer();
|
||||
}
|
||||
Reference in New Issue
Block a user