Skip to content

Commit f35b5c3

Browse files
committed
3.1 commit
1 parent 90f2e16 commit f35b5c3

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ jobs:
6262
run: vendor/bin/phpunit --coverage-clover coverage.clover
6363

6464
- name: SonarQube Scan
65-
uses: SonarSource/sonarqube-scan-action@master
65+
uses: SonarSource/sonarqube-scan-action@v5
6666
env:
67-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
68-
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
67+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

src/Formatters/Stylish.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,5 @@ function stringify(mixed $value, int $depth): string
7878

7979
function buildIndent(int $depth): string
8080
{
81-
return str_repeat(' ', $depth);
81+
return str_repeat(' ', $depth);
8282
}

0 commit comments

Comments
 (0)