blob: 507de99920e1a6a9b1314158eb78cd1778311705 [file] [log] [blame]
<?php
class Component{
function __construct($url,$id){
$this->url=$url;
$this->id=$id;
}
function getURL(){
return $this->url;
}
function getId(){
return $this->id;
}
}
?>