PHP Classes

File: tests/Acme/Environment/CustomEnvironment.php

Recommend this page to a friend!
  Classes of Emmanuel Antico   eMacros   tests/Acme/Environment/CustomEnvironment.php   Download  
File: tests/Acme/Environment/CustomEnvironment.php
Role: Class source
Content type: text/plain
Description: Class source
Class: eMacros
PHP LISP language interpreter
Author: By
Last change:
Date: 10 years ago
Size: 365 bytes
 

Contents

Class file image Download
<?php
namespace Acme\Environment;

use
eMacros\Environment\Environment;
use
eMacros\Package\CorePackage;
use
eMacros\Package\StringPackage;
use
Acme\Package\CustomPackage;

class
CustomEnvironment extends Environment {
    public function
__construct() {
       
$this->import(new CorePackage);
       
$this->import(new StringPackage);
       
$this->import(new CustomPackage);
    }
}
?>