refactor! v1.1

This commit is contained in:
James
2019-07-06 16:20:33 +01:00
parent dac8ef2142
commit 647feac50a
7 changed files with 105 additions and 56 deletions

View File

@@ -1,17 +1,4 @@
<?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;
}
class Label extends GiteaRepoData{
}