@@ -11,7 +11,7 @@ |
||
11 | 11 | * Assert that all given keys are set in an associative array. Nested |
12 | 12 | * members may be specified using dot notation. |
13 | 13 | * |
14 | - * @param array $keys |
|
14 | + * @param string[] $keys |
|
15 | 15 | * @param array $array |
16 | 16 | * |
17 | 17 | * @throws PHPUnit_Framework_AssertionFailedError |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * |
49 | 49 | * http://jsonapi.org/format/#crud-updating-to-one-relationships |
50 | 50 | * |
51 | - * @param Model $record |
|
51 | + * @param \Illuminate\Database\Eloquent\Model $record |
|
52 | 52 | * @param string $relation |
53 | 53 | * @param array $data |
54 | 54 | */ |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | * |
64 | 64 | * http://jsonapi.org/format/#crud-updating-to-many-relationships |
65 | 65 | * |
66 | - * @param Model $record |
|
66 | + * @param \Illuminate\Database\Eloquent\Model $record |
|
67 | 67 | * @param string $relation |
68 | 68 | * @param array $data |
69 | 69 | * @param string $method |
@@ -31,7 +31,7 @@ |
||
31 | 31 | /** |
32 | 32 | * Create a new JSON API collection serializer. |
33 | 33 | * |
34 | - * @param \Illuminate\Support\Collection|LengthAwarePaginator $records The collection of records to serialize |
|
34 | + * @param LengthAwarePaginator $records The collection of records to serialize |
|
35 | 35 | * @param array|null $fields Subset of fields to return by record type |
36 | 36 | * @param array|null $include Relations to include |
37 | 37 | */ |