Fix docblock

This commit is contained in:
manavo
2014-11-25 10:32:39 +00:00
parent a1844741bd
commit 49fe6c9b56

View File

@@ -3,7 +3,7 @@
class Incident extends Eloquent { class Incident extends Eloquent {
/** /**
* An incident belongs to a component. * An incident belongs to a component.
* @return Illuminate\Database\Eloquent\Relations * @return Illuminate\Database\Eloquent\Relations\BelongsTo
*/ */
public function parent() { public function parent() {
return $this->belongsTo('Component', 'component', 'id'); return $this->belongsTo('Component', 'component', 'id');