File tree Expand file tree Collapse file tree 6 files changed +25
-8
lines changed
src/Configuration/Defaults Expand file tree Collapse file tree 6 files changed +25
-8
lines changed Original file line number Diff line number Diff line change 33
44codestyle.php export-ignore
55docker-compose.yml export-ignore
6- Makefile export-ignore
76logo.png export-ignore
7+ Makefile export-ignore
8+ renovate5.json export-ignore
Original file line number Diff line number Diff line change 55 "type" : " library" ,
66 "require" : {
77 "php" : " ^8.2" ,
8- "friendsofphp/php-cs-fixer" : " ^3.59 " ,
9- "kubawerlos/php-cs-fixer-custom-fixers" : " ^3.21 "
8+ "friendsofphp/php-cs-fixer" : " ^3.70 " ,
9+ "kubawerlos/php-cs-fixer-custom-fixers" : " ^3.23 "
1010 },
1111 "require-dev" : {
1212 "jetbrains/phpstorm-attributes" : " ^1.1" ,
13- "phpunit/phpunit" : " ^10.0|^ 11.2" ,
14- "symfony/console" : " ^6.0|^ 7.0"
13+ "phpunit/phpunit" : " ^11.2" ,
14+ "symfony/console" : " ^7.0"
1515 },
1616 "authors" : [
1717 {
Original file line number Diff line number Diff line change 1- version : " 3.7"
2-
31services :
42 php :
5- image : ghcr.io/blumilksoftware/php:8.2
3+ image : ghcr.io/blumilksoftware/php:8.3
64 container_name : blumilk-codestyle-php
75 working_dir : /application
86 user : ${CURRENT_UID:-1000}
Original file line number Diff line number Diff line change 7979use PhpCsFixer \Fixer \Phpdoc \NoBlankLinesAfterPhpdocFixer ;
8080use PhpCsFixer \Fixer \Phpdoc \NoEmptyPhpdocFixer ;
8181use PhpCsFixer \Fixer \Phpdoc \NoSuperfluousPhpdocTagsFixer ;
82+ use PhpCsFixer \Fixer \Phpdoc \PhpdocAlignFixer ;
8283use PhpCsFixer \Fixer \Phpdoc \PhpdocIndentFixer ;
8384use PhpCsFixer \Fixer \Phpdoc \PhpdocLineSpanFixer ;
8485use PhpCsFixer \Fixer \Phpdoc \PhpdocNoEmptyReturnFixer ;
@@ -372,5 +373,6 @@ class CommonRules extends Rules
372373 ConstantCaseFixer::class => true ,
373374 PhpUnitAttributesFixer::class => true ,
374375 SpacesInsideParenthesesFixer::class => true ,
376+ PhpdocAlignFixer::class => ["align " => "left " ],
375377 ];
376378}
Original file line number Diff line number Diff line change @@ -29,4 +29,12 @@ public function add(int $i): void
2929 {
3030 $ this ->i = $ this ->i + $ i ;
3131 }
32+
33+ /**
34+ * @param int $i
35+ */
36+ public function remove ($ i ): void
37+ {
38+ $ this ->i = $ this ->i - $ i ;
39+ }
3240}
Original file line number Diff line number Diff line change @@ -14,4 +14,12 @@ public function add(int $i): void
1414 {
1515 $ this ->i = $ this ->i + $ i ;
1616 }
17+
18+ /**
19+ * @param int $i
20+ */
21+ public function remove ($ i ): void
22+ {
23+ $ this ->i = $ this ->i - $ i ;
24+ }
1725}
You can’t perform that action at this time.
0 commit comments