#39 - cr fixes

This commit is contained in:
Adrian Hopek
2022-02-21 15:49:17 +01:00
parent 96192c0f2c
commit e2c3c3b708
5 changed files with 12 additions and 12 deletions

View File

@@ -48,6 +48,6 @@ enum Month: string
public static function fromNameOrCurrent(string $name): Month
{
return Month::tryFrom($name) ?? Month::current();
return Month::tryFrom($name) ?? Month::current();
}
}