Login   Register  
PHP Classes
elePHPant
Icontem

File: src/eMacros/Environment/ExtendedEnvironment.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Emmanuel Antico  >  eMacros  >  src/eMacros/Environment/ExtendedEnvironment.php  >  Download  
File: src/eMacros/Environment/ExtendedEnvironment.php
Role: Class source
Content type: text/plain
Description: Class source
Class: eMacros
PHP LISP language interpreter
Author: By
Last change:
Date: 2014-01-13 05:17
Size: 1,164 bytes
 

Contents

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

use 
eMacros\Package\CorePackage;
use 
eMacros\Package\StringPackage;
use 
eMacros\Package\ArrayPackage;
use 
eMacros\Package\RequestPackage;
use 
eMacros\Package\DatePackage;
use 
eMacros\Package\HashPackage;
use 
eMacros\Package\MathPackage;
use 
eMacros\Package\RegexPackage;
use 
eMacros\Package\FilePackage;
use 
eMacros\Package\FilterPackage;
use 
eMacros\Package\HTMLPackage;
use 
eMacros\Package\CTypePackage;
use 
eMacros\Package\PasswordPackage;
use 
eMacros\Package\JSONPackage;
use 
eMacros\Package\BufferPackage;

class 
ExtendedEnvironment extends Environment {
    public function 
__construct() {
        
$this->import(new CorePackage);
        
$this->import(new StringPackage);
        
$this->import(new ArrayPackage);
        
$this->import(new RegexPackage);
        
$this->import(new DatePackage);
        
$this->import(new HTMLPackage);
        
$this->import(new RequestPackage);
        
$this->import(new MathPackage);
        
$this->import(new HashPackage);
        
$this->import(new PasswordPackage);
        
$this->import(new FilePackage);
        
$this->import(new FilterPackage);
        
$this->import(new CTypePackage);
        
$this->import(new JSONPackage);
        
$this->import(new BufferPackage);
    }
}
?>