coding style

This commit is contained in:
Ludovic CANDELLIER
2023-09-13 22:53:37 +02:00
parent 69478e3c74
commit 53feef282f
52 changed files with 122 additions and 129 deletions

View File

@@ -20,6 +20,7 @@ class Geolocation
// dump($res);
$longitude = $res[0];
$latitude = $res[1];
// dump($latitude);
// dump($longitude);
// exit;

View File

@@ -55,6 +55,7 @@ class Item extends LavaryMenuItem
if (strstr($this->title, 'circle-o')) {
$this->title = str_replace('fa-circle-o', 'fa-dot-circle-o', $this->title);
}
// dump($this);
return $this;
}

View File

@@ -66,6 +66,7 @@ class Stat
->select($db::raw("count(id) as y, $var as name"))
->groupBy($var)
->get();
// var_Debug::message($data);
return $data;
}
@@ -82,6 +83,7 @@ class Stat
$y = (int) $nb[$key];
$data[] = ['y' => $y, 'name' => $value];
}
// var_Debug::message($data);
return $data;
}