Skip to content

Commit

Permalink
[SFT-439] - Refactoring code style a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
seandelaney committed Jul 22, 2023
1 parent 4c8a1bc commit f19973a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

$finder = PhpCsFixer\Finder::create()
->in(__DIR__ . '/packages/plugin')
->in(__DIR__.'/packages/plugin')
;

return (new PhpCsFixer\Config())
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
},
"scripts": {
"test:unit": "vendor/bin/phpunit --configuration ./phpunit.xml",
"fix": "vendor/bin/php-cs-fixer fix --diff",
"fix:dry-run": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"fix": "vendor/bin/php-cs-fixer fix --diff --config=./.php-cs-fixer.dist.php",
"fix:dry-run": "vendor/bin/php-cs-fixer fix --dry-run --diff --config=./.php-cs-fixer.dist.php",
"cghooks": "vendor/bin/cghooks",
"post-install-cmd": "cghooks add --ignore-lock",
"post-update-cmd": "cghooks update"
Expand Down

0 comments on commit f19973a

Please sign in to comment.