This commit is contained in:
Bob E Moe
2019-06-25 09:15:51 +01:00
parent 4290eab80a
commit 5bac8a9772
7 changed files with 143 additions and 56 deletions

17
src/Label.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
class Label{
public function __construct(Repo $repo,$data){
$this->repo=$repo;
$this->data=$data;
}
public function getData(){
return $this->data;
}
public function getRepo(){
return $this->repo;
}
}