@@ -62,6 +62,19 @@ |
||
62 | 62 | ); |
63 | 63 | } |
64 | 64 | |
65 | + /** |
|
66 | + * @param string $related |
|
67 | + * @param string $foreignKey |
|
68 | + * @param string $localKey |
|
69 | + */ |
|
65 | 70 | abstract public function hasMany($related, $foreignKey = null, $localKey = null); |
71 | + |
|
72 | + /** |
|
73 | + * @param string $related |
|
74 | + * @param string $table |
|
75 | + * @param string $foreignKey |
|
76 | + * @param string $otherKey |
|
77 | + * @param string $relation |
|
78 | + */ |
|
66 | 79 | abstract public function belongsToMany($related, $table = null, $foreignKey = null, $otherKey = null, $relation = null); |
67 | 80 | } |
@@ -62,7 +62,23 @@ |
||
62 | 62 | return $this->belongsToMany('Tinyissue\Model\Project', 'projects_kanban_tags', 'project_id', 'tag_id'); |
63 | 63 | } |
64 | 64 | |
65 | + /** |
|
66 | + * @param string $related |
|
67 | + * @param string $foreignKey |
|
68 | + */ |
|
65 | 69 | abstract public function belongsTo($related, $foreignKey = null, $otherKey = null, $relation = null); |
70 | + |
|
71 | + /** |
|
72 | + * @param string $related |
|
73 | + * @param string $foreignKey |
|
74 | + */ |
|
66 | 75 | abstract public function hasMany($related, $foreignKey = null, $localKey = null); |
76 | + |
|
77 | + /** |
|
78 | + * @param string $related |
|
79 | + * @param string $table |
|
80 | + * @param string $foreignKey |
|
81 | + * @param string $otherKey |
|
82 | + */ |
|
67 | 83 | abstract public function belongsToMany($related, $table = null, $foreignKey = null, $otherKey = null, $relation = null); |
68 | 84 | } |
@@ -32,7 +32,6 @@ discard block |
||
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
35 | - * @param int $deleted |
|
36 | 35 | * |
37 | 36 | * @return int |
38 | 37 | */ |
@@ -42,7 +41,6 @@ discard block |
||
42 | 41 | } |
43 | 42 | |
44 | 43 | /** |
45 | - * @param int $deleted |
|
46 | 44 | * |
47 | 45 | * @return int |
48 | 46 | */ |
@@ -73,7 +73,6 @@ |
||
73 | 73 | /** |
74 | 74 | * Updates the users settings, validates the fields. |
75 | 75 | * |
76 | - * @param array $info |
|
77 | 76 | * |
78 | 77 | * @return Eloquent\Model |
79 | 78 | */ |