Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 34b373c

Browse files
committed
Comma after each array item
1 parent 375fc9c commit 34b373c

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

test/Reflection/DocBlock/Tag/VarTagTest.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,61 +41,61 @@ public function varTagProvider(): array
4141
'string',
4242
['string'],
4343
null,
44-
null
44+
null,
4545
],
4646
'only multiple types' => [
4747
'string|int',
4848
['string', 'int'],
4949
null,
50-
null
50+
null,
5151
],
5252
'type and name' => [
5353
'string $test',
5454
['string'],
5555
'$test',
56-
null
56+
null,
5757
],
5858
'multiple types and name' => [
5959
'string|int $test',
6060
['string', 'int'],
6161
'$test',
62-
null
62+
null,
6363
],
6464
'only name' => [
6565
'$test',
6666
[],
6767
'$test',
68-
null
68+
null,
6969
],
7070
'name and description' => [
7171
'$test Foo Bar',
7272
[],
7373
'$test',
74-
'Foo Bar'
74+
'Foo Bar',
7575
],
7676
'type and description' => [
7777
'string Foo bar',
7878
['string'],
7979
null,
80-
'Foo bar'
80+
'Foo bar',
8181
],
8282
'multiple types and description' => [
8383
'string|int Foo bar',
8484
['string', 'int'],
8585
null,
86-
'Foo bar'
86+
'Foo bar',
8787
],
8888
'type, name and description' => [
8989
'string $test Foo bar',
9090
['string'],
9191
'$test',
92-
'Foo bar'
92+
'Foo bar',
9393
],
9494
'multiple types, name and description' => [
9595
'string|int $test Foo bar',
9696
['string', 'int'],
9797
'$test',
98-
'Foo bar'
98+
'Foo bar',
9999
],
100100

101101
];

test/Reflection/ReflectionDocBlockTagTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,14 +176,14 @@ public function propertyVarDocProvider(): array
176176
'typeDescription',
177177
['string'],
178178
null,
179-
'Foo bar'
179+
'Foo bar',
180180
],
181181
'type and name' => ['typeName', ['string'], '$typeName', null],
182182
'type, name and description' => [
183183
'typeNameDescription',
184184
['string'],
185185
'$typeNameDescription',
186-
'Foo bar'
186+
'Foo bar',
187187
],
188188
];
189189
}

0 commit comments

Comments
 (0)