Ignore:
Timestamp:
Jan 6, 2016, 11:01:30 PM (9 years ago)
Author:
chronos
Message:
  • Moved: Application, Base and AppModule to Common Package.
  • Modified: Main application class renamed to Core.
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/Packages/Common/Base.php

    r778 r779  
    11<?php
     2
     3class System
     4{
     5  /* @var Database */
     6  var $Database;
     7
     8  function __construct()
     9  {
     10    $this->Database = new Database();
     11  }
     12}
    213
    314class Base
    415{
    5   /** @var Database */
     16  /** @var Application */
     17  var $System;
     18  /* @var Database */
    619  var $Database;
    7   /** @var System */
    8   var $System;
    920
    10   function __construct($System)
     21  function __construct(Application $System)
    1122  {
    1223    $this->System = &$System;
Note: See TracChangeset for help on using the changeset viewer.