36 lines
639 B
PHP
36 lines
639 B
PHP
<?php
|
|
/**
|
|
* Ion
|
|
*
|
|
* Building blocks for web development
|
|
*
|
|
* @package Ion
|
|
* @author Timothy J. Warren
|
|
* @copyright Copyright (c) 2015 - 2016
|
|
* @license MIT
|
|
*/
|
|
|
|
namespace Aviat\Ion\Di;
|
|
|
|
/**
|
|
* Interface for a class that is aware of the Di Container
|
|
*/
|
|
interface ContainerAwareInterface {
|
|
|
|
/**
|
|
* Set the container for the current object
|
|
*
|
|
* @param ContainerInterface $container
|
|
* @return void
|
|
*/
|
|
public function setContainer(ContainerInterface $container);
|
|
|
|
/**
|
|
* Get the container object
|
|
*
|
|
* @return ContainerInterface
|
|
*/
|
|
public function getContainer();
|
|
|
|
}
|
|
// End of ContainerAwareInterface.php
|