| 1 | <?php |
||
| 18 | class NameSpaceEntry |
||
| 19 | { |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | private $nameSpace; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | private $path; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Creates a Namespace Entry |
||
| 33 | * |
||
| 34 | * @param string $nameSpace |
||
| 35 | * @param string $path |
||
| 36 | */ |
||
| 37 | public function __construct($nameSpace, $path) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Get the entry name space |
||
| 45 | * |
||
| 46 | * @return string |
||
| 47 | */ |
||
| 48 | public function getNameSpace() |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Get the path for this name space entry |
||
| 55 | * |
||
| 56 | * @return string |
||
| 57 | */ |
||
| 58 | public function getPath() |
||
| 62 | } |
||
| 63 |