Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add void return type hint for parsesUnit.
Co-authored-by: Oliver Klee <github@oliverklee.de>
  • Loading branch information
JakeQZ and oliverklee authored Feb 17, 2024
commit 7e6ffdfdb37d48f30506132951979656bc041317
2 changes: 1 addition & 1 deletion tests/Value/SizeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function (string $unit): array {
*
* @dataProvider provideUnit
*/
public function parsesUnit(string $unit)
public function parsesUnit(string $unit): void
{
$subject = Size::parse(new ParserState('1' . $unit, Settings::create()));

Expand Down