Fix PHPDoc return type for belongsToMany relations

This commit is contained in:
James Brooks
2015-02-07 10:09:22 +00:00
parent a22cbe82c1
commit d1486d3d68
2 changed files with 2 additions and 2 deletions

View File

@@ -88,7 +88,7 @@ class Component extends Model implements TransformableInterface
/**
* Components can have many tags.
*
* @return \Illuminate\Database\Eloquent\Relations\HasMany
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
*/
public function tags()
{

View File

@@ -34,7 +34,7 @@ class Tag extends Model
/**
* Tags can have many components.
*
* @return \Illuminate\Database\Eloquent\Relations\HasMany
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
*/
public function components()
{