Skip to content

Commit

Permalink
- CS Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TorbenKoehn committed Jan 22, 2019
1 parent 5d68f40 commit b7f694d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion tests/Stream/Iterator/WriteIteratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ public function provideNonWritableValues(): array
[1.4],
[15],
[[]],
[new class {}],
[new class {
}],
[stream_context_create()]
];
}
Expand Down
9 changes: 6 additions & 3 deletions tests/StreamTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,8 @@ public function provideNonStringArguments(): array
[1.4],
[15],
[[]],
[new class {}],
[new class {
}],
[stream_context_create()]
];
}
Expand All @@ -553,7 +554,8 @@ public function provideNonIntArguments(): array
[1.4],
['test'],
[[]],
[new class {}],
[new class {
}],
[stream_context_create()]
];
}
Expand All @@ -565,7 +567,8 @@ public function provideInvalidMetadataKeys(): array
[1.5],
[1.4],
[[]],
[new class {}],
[new class {
}],
[stream_context_create()]
];
}
Expand Down

0 comments on commit b7f694d

Please sign in to comment.