Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jokesterfr committed Aug 14, 2024
1 parent 6d34d5b commit 2ec7730
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ lint: php-cs-fixer php-lint
docker-lint: docker-php-cs-fixer docker-php-lint

# target: lint-fix (or docker-lint-fix) - Automatically fix the linting errors
.PHONY: lint-fix docker-lint-fix
.PHONY: lint-fix docker-lint-fix fix
fix: lint-fix
lint-fix: php-cs-fixer-fix
docker-lint-fix: docker-php-cs-fixer-fix

Expand Down
6 changes: 3 additions & 3 deletions src/Repository/UserTokenRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ public function __construct()
*/
public function getOrRefreshToken()
{
return 'token';
}
}
return 'token';
}
}

0 comments on commit 2ec7730

Please sign in to comment.