Fixed a few more PHPCS issues
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2026-07-21 13:35:13 -04:00
parent be2a30ceca
commit 122f78f69e
2 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ class BenchmarkController extends Controller {
public function postAdd(Request $request, Response $response): Response {
$params = (array)$request->getParsedBody();
$benchmark = new Benchmark;
$benchmark = new Benchmark();
$benchmark->name = $params['benchmark_name'];
$benchmark->description = $params['benchmark_description'];
$benchmark->scoring = $params['benchmark_scoring'];
-2
View File
@@ -5,7 +5,6 @@ namespace BitGoblin\Colossus\Models;
use Illuminate\Database\Eloquent\Model;
class Test extends Model {
protected $fillable = [
'date_tag',
'benchmark_id',
@@ -68,5 +67,4 @@ class Test extends Model {
return $data;
}
}