Skip to content

Commit 2628a8b

Browse files
💄 Fix lint
1 parent 2477a3e commit 2628a8b

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

TwigCS/Command/TwigCSCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ protected function configure()
5555
'f',
5656
InputOption::VALUE_NONE,
5757
'Automatically fix all the fixable violations'
58-
)
58+
),
5959
])
6060
->addArgument(
6161
'paths',

TwigCS/Runner/Fixer.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ class Fixer
9999
*/
100100
protected $numFixes = 0;
101101

102-
103102
/**
104103
* Starts fixing a new file.
105104
*
@@ -345,7 +344,6 @@ public function rollbackChangeset()
345344
}
346345
}
347346

348-
349347
/**
350348
* Replace the entire contents of a token.
351349
*

TwigCS/Tests/AbstractSniffTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ protected function checkGenericSniff(SniffInterface $sniff, array $expects)
7979
$fixer->fixFile($file);
8080

8181
$diff = $fixer->generateDiff($fixedFile);
82-
if ("" !== $diff) {
82+
if ('' !== $diff) {
8383
$this->fail($diff);
8484
}
8585
}

0 commit comments

Comments
 (0)