PHP Classes

File: system/dependencies/php-di/php-di/src/Compiler/Template.php

Recommend this page to a friend!
  Classes of Dimitri Sitchet   dFramework   system/dependencies/php-di/php-di/src/Compiler/Template.php   Download  
File: system/dependencies/php-di/php-di/src/Compiler/Template.php
Role: Example script
Content type: text/plain
Description: Example script
Class: dFramework
Framework to build PHP applications
Author: By
Last change:
Date: 3 years ago
Size: 396 bytes
 

Contents

Class file image Download
/**
 * 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; ?>
}