Login   Register  
PHP Classes
elePHPant
Icontem

File: src/eMacros/Package/Package.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/Package/Package.php  >  Download  
File: src/eMacros/Package/Package.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: 211 bytes
 

Contents

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

use 
eMacros\Scope;

abstract class 
Package extends Scope {
    
/**
     * Package id
     * @var string
     */
    
public $id;
    
    public function 
__construct($id) {
        
$this->id $id;
    }
}
?>