@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | /** |
| 32 | 32 | * is profile of User. |
| 33 | 33 | * |
| 34 | - * @return Illuminate\Database\Query Relationship Contact belongs to User query |
|
| 34 | + * @return \Illuminate\Database\Eloquent\Relations\BelongsTo Relationship Contact belongs to User query |
|
| 35 | 35 | */ |
| 36 | 36 | public function user() |
| 37 | 37 | { |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | /** |
| 42 | 42 | * belongs to Business. |
| 43 | 43 | * |
| 44 | - * @return Illuminate\Database\Query Relationship Contact is part of Businesses addressbooks query |
|
| 44 | + * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany Relationship Contact is part of Businesses addressbooks query |
|
| 45 | 45 | */ |
| 46 | 46 | public function businesses() |
| 47 | 47 | { |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | /** |
| 52 | 52 | * has Appointments. |
| 53 | 53 | * |
| 54 | - * @return Illuminate\Database\Query Relationship Contact has booked Appointments query |
|
| 54 | + * @return \Illuminate\Database\Eloquent\Relations\HasMany Relationship Contact has booked Appointments query |
|
| 55 | 55 | */ |
| 56 | 56 | public function appointments() |
| 57 | 57 | { |
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | /** |
| 149 | 149 | * set Birthdate. |
| 150 | 150 | * |
| 151 | - * @param string $birthdate Carbon parseable birth date |
|
| 151 | + * @param Carbon $birthdate Carbon parseable birth date |
|
| 152 | 152 | */ |
| 153 | 153 | public function setBirthdateAttribute(Carbon $birthdate = null) |
| 154 | 154 | { |