Skip to content

Commit d6d1b90

Browse files
authored
Remove doc blocks
1 parent 60ad373 commit d6d1b90

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/Models/Contact.php

-9
Original file line numberDiff line numberDiff line change
@@ -47,25 +47,16 @@ public function generateReferenceNumber()
4747
$this->reference_number = $token;
4848
}
4949

50-
/**
51-
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
52-
*/
5350
public function user()
5451
{
5552
return $this->belongsTo(app('user'));
5653
}
5754

58-
/**
59-
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
60-
*/
6155
public function location()
6256
{
6357
return $this->belongsTo(app('location'));
6458
}
6559

66-
/**
67-
* @return \Illuminate\Database\Eloquent\Relations\MorphMany
68-
*/
6960
public function notes()
7061
{
7162
return $this->morphMany(app('note'), 'noteable');

0 commit comments

Comments
 (0)