Skip to content

Commit 84f991b

Browse files
committed
Revert style fixes to keep only build.yml and test changes
1 parent 0cc31bb commit 84f991b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/Analyzer/ClassDescription.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function __construct(
5757
bool $enum,
5858
array $docBlock,
5959
array $attributes,
60-
string $filePath,
60+
string $filePath
6161
) {
6262
$this->FQCN = $FQCN;
6363
$this->filePath = $filePath;

src/Analyzer/FileParser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function __construct(
2929
FileVisitor $fileVisitor,
3030
NameResolver $nameResolver,
3131
DocblockTypesResolver $docblockTypesResolver,
32-
TargetPhpVersion $targetPhpVersion,
32+
TargetPhpVersion $targetPhpVersion
3333
) {
3434
$this->fileVisitor = $fileVisitor;
3535
$this->parsingErrors = [];

src/CLI/Runner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function check(
4444
Parser $fileParser,
4545
Violations $violations,
4646
ParsingErrors $parsingErrors,
47-
bool $stopOnFailure,
47+
bool $stopOnFailure
4848
): void {
4949
/** @var SplFileInfo $file */
5050
foreach ($classSetRule->getClassSet() as $file) {

src/PHPUnit/ArchRuleCheckerConstraintAdapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function toString(): string
6161

6262
protected function matches(
6363
/** @var $rule ArchRule */
64-
$other,
64+
$other
6565
): bool {
6666
$this->runner->check(
6767
ClassSetRules::create($this->classSet, $other),

src/Rules/ArchRule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function __construct(
2828
Constraints $constraints,
2929
string $because,
3030
array $classesToBeExcluded,
31-
bool $runOnlyThis,
31+
bool $runOnlyThis
3232
) {
3333
$this->thats = $specs;
3434
$this->shoulds = $constraints;

tests/E2E/Cli/CheckCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ protected function runCheck(
269269
bool $skipBaseline = false,
270270
bool $ignoreBaselineNumbers = false,
271271
string $format = 'text',
272-
?string $autoloadFilePath = null,
272+
?string $autoloadFilePath = null
273273
): ApplicationTester {
274274
$input = ['check'];
275275

0 commit comments

Comments
 (0)