Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/**
2
 * This class has been auto-generated by PHP-DI.
3
 */
4
class <?php echo $this->containerClass; ?> extends <?php echo $this->containerParentClass; ?>
5
{
6
    const METHOD_MAPPING = <?php var_export($this->entryToMethodMapping); ?>;
7
 
8
<?php foreach ($this->methods as $methodName => $methodContent) { ?>
9
    protected function <?php echo $methodName; ?>()
10
    {
11
        <?php echo $methodContent; ?>
12
 
13
    }
14
 
15
<?php } ?>
16
}