Code style fix

This commit is contained in:
Anton Komarev
2023-09-03 13:24:00 +03:00
parent bd9bad0f0b
commit cd5b7842af
5 changed files with 84 additions and 37 deletions

View File

@@ -17,7 +17,11 @@ use Komarev\GitHubProfileViewsCounter\Username;
interface CounterRepositoryInterface
{
public function getViewsCountByUsername(Username $username): int;
public function getViewsCountByUsername(
Username $username
): int;
public function addViewByUsername(Username $username): void;
public function addViewByUsername(
Username $username
): void;
}