PHP Classes

File: tests/Acme/Package/UserPackage.php

Recommend this page to a friend!
  Classes of Emmanuel Antico   eMacros   tests/Acme/Package/UserPackage.php   Download  
File: tests/Acme/Package/UserPackage.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: 308 bytes
 

Contents

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

use
eMacros\Package\Package;
use
Acme\Runtime\Increment;

class
UserPackage extends Package {
    public function
__construct() {
       
parent::__construct('User');
   
       
/**
         * Incrementar valor de variable
         * Uso: (inc _x) (inc _y 3)
        */
       
$this['inc'] = new Increment();
    }
}
?>