Removed references to old result routes; fixed typos in some models
This commit is contained in:
@ -17,7 +17,7 @@ class Benchmark extends Model {
|
||||
}
|
||||
|
||||
public function results() {
|
||||
return $this->hasMany(Result::class):
|
||||
return $this->hasMany(Result::class);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -16,7 +16,7 @@ class Component extends Model {
|
||||
}
|
||||
|
||||
public function results() {
|
||||
return $this->hasMany(Result::class):
|
||||
return $this->hasMany(Result::class);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -18,7 +18,7 @@ class Result extends Model {
|
||||
}
|
||||
|
||||
public function component() {
|
||||
return $this->belongsTo(Component::class):
|
||||
return $this->belongsTo(Component::class);
|
||||
}
|
||||
|
||||
public function benchmark() {
|
||||
|
Reference in New Issue
Block a user