Хранилища Subversion ant

Редакция

Авторство | Последнее изменение | Открыть журнал | Скачать | 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 Owner {
    protected $db       = NULL;
    protected $prefix   = NULL;
    protected $secure   = NULL;

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

?>