Skip to content

Commit 081d20b

Browse files
📦 Refacto Folder
1 parent 7f0152f commit 081d20b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+356
-32
lines changed

SymfonyCustom/Sniffs/FixerHelper.php renamed to SymfonyCustom/Helpers/FixerHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace SymfonyCustom\Sniffs;
5+
namespace SymfonyCustom\Helpers;
66

77
use PHP_CodeSniffer\Files\File;
88

SymfonyCustom/Sniffs/SniffHelper.php renamed to SymfonyCustom/Helpers/SniffHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace SymfonyCustom\Sniffs;
5+
namespace SymfonyCustom\Helpers;
66

77
use PHP_CodeSniffer\Files\File;
88
use PHP_CodeSniffer\Util\Tokens;

SymfonyCustom/Sniffs/Arrays/ArrayDeclarationSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use PHP_CodeSniffer\Files\File;
88
use PHP_CodeSniffer\Sniffs\Sniff;
99
use PHP_CodeSniffer\Util\Tokens;
10-
use SymfonyCustom\Sniffs\FixerHelper;
10+
use SymfonyCustom\Helpers\FixerHelper;
1111

1212
/**
1313
* A test to ensure that arrays conform to the array coding standard.

SymfonyCustom/Sniffs/Commenting/DocCommentGroupSameTypeSniff.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
use PHP_CodeSniffer\Files\File;
88
use PHP_CodeSniffer\Sniffs\Sniff;
9-
use SymfonyCustom\Sniffs\FixerHelper;
10-
use SymfonyCustom\Sniffs\SniffHelper;
9+
use SymfonyCustom\Helpers\FixerHelper;
10+
use SymfonyCustom\Helpers\SniffHelper;
1111

1212
/**
1313
* Throws errors if comments are not grouped by type with one blank line between them.

SymfonyCustom/Sniffs/Commenting/DocCommentSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
use PHP_CodeSniffer\Files\File;
88
use PHP_CodeSniffer\Sniffs\Sniff;
9-
use SymfonyCustom\Sniffs\FixerHelper;
9+
use SymfonyCustom\Helpers\FixerHelper;
1010

1111
/**
1212
* Ensures doc blocks follow basic formatting.

SymfonyCustom/Sniffs/Namespaces/AlphabeticallySortedUseSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use PHP_CodeSniffer\Files\File;
88
use PHP_CodeSniffer\Sniffs\Sniff;
99
use PHP_CodeSniffer\Util\Tokens;
10-
use SymfonyCustom\Sniffs\SniffHelper;
10+
use SymfonyCustom\Helpers\SniffHelper;
1111

1212
/**
1313
* Class AlphabeticallySortedUseSniff

SymfonyCustom/Sniffs/Namespaces/UnusedUseSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use PHP_CodeSniffer\Files\File;
88
use PHP_CodeSniffer\Sniffs\Sniff;
99
use PHP_CodeSniffer\Util\Tokens;
10-
use SymfonyCustom\Sniffs\SniffHelper;
10+
use SymfonyCustom\Helpers\SniffHelper;
1111

1212
/**
1313
* Checks for "use" statements that are not needed in a file.

SymfonyCustom/Sniffs/WhiteSpace/DocCommentTagSpacingSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
use PHP_CodeSniffer\Files\File;
88
use PHP_CodeSniffer\Sniffs\Sniff;
9-
use SymfonyCustom\Sniffs\SniffHelper;
9+
use SymfonyCustom\Helpers\SniffHelper;
1010

1111
/**
1212
* Checks that there are not 2 empty lines following each other.
File renamed without changes.

0 commit comments

Comments
 (0)