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