Хранилища Subversion ant

Редакция

Редакция 304 | Редакция 308 | К новейшей редакции | Авторство | Сравнить с предыдущей | Последнее изменение | Открыть журнал | Скачать | RSS

<?php

/**
 *  
 *  Codename: ant-ng - generator of sources.list for Debian and
 *  distributives, based on Debian
 *  http://alex-w.org.ru/p/antng/
 *
 *  Copyright (c) 2009 Alexander Wolf
 *  Dual licensed under the MIT and GNU LGPL licenses.
 *  http://alex-w.org.ru/p/antng/license
 *
 */


class Core {
    protected $db = NULL;

    function __constructor($database) {
        $this->db = $database;
    }

}

class Security extends Core {
    function __constructor() {

    }
}

class Owner extends Core {
    function __constructor() {

    }
}

?>