Skip to content

Commit 4c6eee4

Browse files
committed
Cleanup
1 parent 3477a00 commit 4c6eee4

7 files changed

+3
-3
lines changed

tests/Sniffs/TypeHints/DeclareStrictTypesSniffTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ public function testFixableCommentBefore(): void
239239
public function testFixableMissingIncorrectFormatOneSpace(): void
240240
{
241241
$report = self::checkFile(
242-
__DIR__ . '/data/fixableDeclareStrictTypesIncorrentFormatOneSpace.php',
242+
__DIR__ . '/data/fixableDeclareStrictTypesIncorrectFormatOneSpace.php',
243243
[],
244244
[DeclareStrictTypesSniff::CODE_INCORRECT_STRICT_TYPES_FORMAT]
245245
);
@@ -248,15 +248,15 @@ public function testFixableMissingIncorrectFormatOneSpace(): void
248248

249249
public function testFixableMissingIncorrectFormatNoSpaces(): void
250250
{
251-
$report = self::checkFile(__DIR__ . '/data/fixableDeclareStrictTypesIncorrentFormatNoSpaces.php', [
251+
$report = self::checkFile(__DIR__ . '/data/fixableDeclareStrictTypesIncorrectFormatNoSpaces.php', [
252252
'spacesCountAroundEqualsSign' => 0,
253253
], [DeclareStrictTypesSniff::CODE_INCORRECT_STRICT_TYPES_FORMAT]);
254254
self::assertAllFixedInFile($report);
255255
}
256256

257257
public function testFixableMissingIncorrectFormatMoreSpaces(): void
258258
{
259-
$report = self::checkFile(__DIR__ . '/data/fixableDeclareStrictTypesIncorrentFormatMoreSpaces.php', [
259+
$report = self::checkFile(__DIR__ . '/data/fixableDeclareStrictTypesIncorrectFormatMoreSpaces.php', [
260260
'spacesCountAroundEqualsSign' => 4,
261261
], [DeclareStrictTypesSniff::CODE_INCORRECT_STRICT_TYPES_FORMAT]);
262262
self::assertAllFixedInFile($report);

tests/Sniffs/TypeHints/data/fixableDeclareStrictTypesIncorrentFormatMoreSpaces.fixed.php renamed to tests/Sniffs/TypeHints/data/fixableDeclareStrictTypesIncorrectFormatMoreSpaces.fixed.php

File renamed without changes.

tests/Sniffs/TypeHints/data/fixableDeclareStrictTypesIncorrentFormatMoreSpaces.php renamed to tests/Sniffs/TypeHints/data/fixableDeclareStrictTypesIncorrectFormatMoreSpaces.php

File renamed without changes.

tests/Sniffs/TypeHints/data/fixableDeclareStrictTypesIncorrentFormatNoSpaces.fixed.php renamed to tests/Sniffs/TypeHints/data/fixableDeclareStrictTypesIncorrectFormatNoSpaces.fixed.php

File renamed without changes.

tests/Sniffs/TypeHints/data/fixableDeclareStrictTypesIncorrentFormatNoSpaces.php renamed to tests/Sniffs/TypeHints/data/fixableDeclareStrictTypesIncorrectFormatNoSpaces.php

File renamed without changes.

tests/Sniffs/TypeHints/data/fixableDeclareStrictTypesIncorrentFormatOneSpace.fixed.php renamed to tests/Sniffs/TypeHints/data/fixableDeclareStrictTypesIncorrectFormatOneSpace.fixed.php

File renamed without changes.

tests/Sniffs/TypeHints/data/fixableDeclareStrictTypesIncorrentFormatOneSpace.php renamed to tests/Sniffs/TypeHints/data/fixableDeclareStrictTypesIncorrectFormatOneSpace.php

File renamed without changes.

0 commit comments

Comments
 (0)