PHP Classes

File: src/eMacros/Package/Package.php

Recommend this page to a friend!
  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: 10 years ago
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;
    }
}
?>