fix indenting

This commit is contained in:
James
2019-07-30 19:59:22 +01:00
parent 0207c9b4a3
commit c468275075
4 changed files with 90 additions and 90 deletions

View File

@@ -3,12 +3,12 @@ class GiteaData{
protected $data=null;
public function __construct($data=null){
public function __construct($data=null){
if(!$data){
$data=new stdClass();
}
$this->data=$data;
}
}
public function __set($k,$v){
$this->data->$k=$v;