Просмотр файла cvServiceContainer/cvServiceContainerDumperInterface.php

Размер файла: 400B
<?php

/**
 * cvServiceContainerDumperInterface
 * 
 * cvServiceContainerDumperInterface is the interface implemented by service container dumper classes.
 * 
 * @package CYBERVILLE
 * @subpackage DI
 * @author Fabien Potencier <[email protected]>
 * @version $Id$
 */
interface cvServiceContainerDumperInterface {
    function dump(array $options = array());
}

?>