@@ -36,12 +36,10 @@ public function testOutput()
36
36
37
37
$ output = <<<'DOC'
38
38
/**
39
- *
40
- *
41
39
* @param string $last
42
40
* @param string $first
43
41
* @param string $middle
44
- * @static
42
+ * @static
45
43
*/
46
44
DOC;
47
45
$ this ->assertSame ($ output , $ method ->getDocComment ('' ));
@@ -71,8 +69,8 @@ public function testEloquentBuilderOutput()
71
69
* @param array $values
72
70
* @param array|string $uniqueBy
73
71
* @param array|null $update
74
- * @return int
75
- * @static
72
+ * @return int
73
+ * @static
76
74
*/
77
75
DOC;
78
76
$ this ->assertSame ($ output , $ method ->getDocComment ('' ));
@@ -104,8 +102,8 @@ public function testEloquentBuilderNormalizedReturnType()
104
102
* @param mixed $operator
105
103
* @param mixed $value
106
104
* @param string $boolean
107
- * @return \Illuminate\Database\Eloquent\Builder<static>
108
- * @static
105
+ * @return \Illuminate\Database\Eloquent\Builder<static>
106
+ * @static
109
107
*/
110
108
DOC;
111
109
$ this ->assertSame ($ output , $ method ->getDocComment ('' ));
@@ -134,8 +132,8 @@ public function testQueryBuilderNormalizedReturnType()
134
132
* @param string|array|\Illuminate\Contracts\Database\Query\Expression $columns
135
133
* @param string $boolean
136
134
* @param bool $not
137
- * @return \Illuminate\Database\Eloquent\Builder<static>
138
- * @static
135
+ * @return \Illuminate\Database\Eloquent\Builder<static>
136
+ * @static
139
137
*/
140
138
DOC;
141
139
@@ -177,10 +175,8 @@ public function testClassAliases()
177
175
178
176
$ output = <<<'DOC'
179
177
/**
180
- *
181
- *
182
- * @return \Illuminate\Foundation\Application
183
- * @static
178
+ * @return \Illuminate\Foundation\Application
179
+ * @static
184
180
*/
185
181
DOC;
186
182
@@ -208,8 +204,8 @@ public function testEloquentBuilderWithTemplates()
208
204
* @template TValue
209
205
* @param (\Closure(): TValue)|list<string> $columns
210
206
* @param (\Closure(): TValue)|null $callback
211
- * @return TModel|TValue
212
- * @static
207
+ * @return TModel|TValue
208
+ * @static
213
209
*/
214
210
DOC;
215
211
$ this ->assertSame ($ output , $ method ->getDocComment ('' ));
0 commit comments