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