Skip to content

Commit 3891097

Browse files
committed
Fix styles
1 parent 73701f4 commit 3891097

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+3304
-863
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,5 @@ phpcs.xml
7777

7878
# End of https://www.toptal.com/developers/gitignore/api/phpunit,phpcodesniffer,visualstudiocode,macos
7979

80-
.idea
80+
.idea
81+
.php-cs-fixer.cache

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
./vendor/bin/phpunit ./tests
22

3-
./vendor/bin/phpstan analyze src
3+
./vendor/bin/phpstan analyze src
4+
5+
PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer fix src
6+
PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer fix tests

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"phpstan/phpstan": "^2.1",
1818
"phpstan/phpstan-strict-rules": "^2.0",
1919
"phpstan/extension-installer": "^1.4",
20-
"phpunit/phpunit": "^10.5"
20+
"phpunit/phpunit": "^10.5",
21+
"friendsofphp/php-cs-fixer": "^3.67"
2122
},
2223
"config": {
2324
"allow-plugins": {

0 commit comments

Comments
 (0)