remove Coverage
This commit is contained in:
@@ -20,11 +20,6 @@ class TimeTracker extends Model
|
||||
'end_at' => 'datetime',
|
||||
];
|
||||
|
||||
public function user(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(User::class);
|
||||
}
|
||||
|
||||
public function toDo(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(ToDo::class, 'to_do_id');
|
||||
|
||||
@@ -51,11 +51,6 @@ class User extends Authenticatable
|
||||
return $this->belongsTo(TimeTracker::class, 'time_tracker_id');
|
||||
}
|
||||
|
||||
public function timeTrackers(): HasMany
|
||||
{
|
||||
return $this->hasMany(TimeTracker::class);
|
||||
}
|
||||
|
||||
public function toDos(): HasMany
|
||||
{
|
||||
return $this->hasMany(ToDo::class);
|
||||
|
||||
Reference in New Issue
Block a user