Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 1
common_ext_Namespace
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 4
20
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 getModelId
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getUri
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 __toString
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2008-2010 (original work) Deutsche Institut für Internationale Pädagogische Forschung
19 *                         (under the project TAO-TRANSFER);
20 *               2009-2012 (update and modification) Public Research Centre Henri Tudor
21 *                         (under the project TAO-SUSTAIN & TAO-DEV);
22 *
23 */
24
25/**
26 * Short description of class common_ext_Namespace
27 *
28 * @access  public
29 * @author  Jerome Bogaerts, <jerome.bogaerts@tudor.lu>
30 * @package generis
31 */
32class common_ext_Namespace
33{
34    /**
35     * A unique identifier of the namespace
36     *
37     * @var string
38     */
39    protected $modelId;
40
41    /**
42     * the namespace URI
43     *
44     * @var string
45     */
46    protected $uri;
47
48    /**
49     * Namespace constructor.
50     *
51     * @author Jerome Bogaerts, <jerome.bogaerts@tudor.lu>
52     *
53     * @param  string id
54     * @param  string uri
55     */
56    public function __construct($id = '', $uri = '')
57    {
58        $this->modelId = (string) $id;
59        $this->uri = $uri;
60    }
61
62    /**
63     * Get the identifier of the namespace instance
64     *
65     * @author Jerome Bogaerts, <jerome.bogaerts@tudor.lu>
66     * @return string
67     */
68    public function getModelId()
69    {
70        return $this->modelId;
71    }
72
73    /**
74     * Get the namespace URI
75     *
76     * @author Jerome Bogaerts, <jerome.bogaerts@tudor.lu>
77     * @return string
78     */
79    public function getUri()
80    {
81        return $this->uri;
82    }
83
84    /**
85     * Magic method, return the Namespace URI
86     *
87     * @author Jerome Bogaerts, <jerome.bogaerts@tudor.lu>
88     * @return string
89     */
90    public function __toString()
91    {
92        return $this->getUri();
93    }
94}