Просмотр файла cvServiceContainer/cvServiceContainerDumperInterface.php
<?php
/**
* cvServiceContainerDumperInterface
*
* cvServiceContainerDumperInterface is the interface implemented by service container dumper classes.
*
* @package CYBERVILLE
* @subpackage DI
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @version $Id$
*/
interface cvServiceContainerDumperInterface {
function dump(array $options = array());
}
?>