Skip to content

Commit 3aa3eaa

Browse files
committed
Rename Inpsyde\Helpers to Inpsyde\CodingStandard\Helpers
1 parent e3a3488 commit 3aa3eaa

23 files changed

+34
-34
lines changed

Inpsyde/Helpers/Boundaries.php

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

2727
declare(strict_types=1);
2828

29-
namespace Inpsyde\Helpers;
29+
namespace Inpsyde\CodingStandard\Helpers;
3030

3131
use PHP_CodeSniffer\Files\File;
3232
use PHP_CodeSniffer\Util\Tokens;

Inpsyde/Helpers/FunctionDocBlock.php

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

2727
declare(strict_types=1);
2828

29-
namespace Inpsyde\Helpers;
29+
namespace Inpsyde\CodingStandard\Helpers;
3030

3131
use PHP_CodeSniffer\Files\File;
3232

Inpsyde/Helpers/FunctionReturnStatement.php

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

2727
declare(strict_types=1);
2828

29-
namespace Inpsyde\Helpers;
29+
namespace Inpsyde\CodingStandard\Helpers;
3030

3131
use PHP_CodeSniffer\Files\File;
3232
use PHP_CodeSniffer\Util\Tokens;

Inpsyde/Helpers/Functions.php

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

2727
declare(strict_types=1);
2828

29-
namespace Inpsyde\Helpers;
29+
namespace Inpsyde\CodingStandard\Helpers;
3030

3131
use PHP_CodeSniffer\Files\File;
3232
use PHP_CodeSniffer\Util\Tokens;

Inpsyde/Helpers/Misc.php

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

2727
declare(strict_types=1);
2828

29-
namespace Inpsyde\Helpers;
29+
namespace Inpsyde\CodingStandard\Helpers;
3030

3131
use PHP_CodeSniffer\Config;
3232
use PHP_CodeSniffer\Files\File;

Inpsyde/Helpers/Names.php

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

2727
declare(strict_types=1);
2828

29-
namespace Inpsyde\Helpers;
29+
namespace Inpsyde\CodingStandard\Helpers;
3030

3131
use PHP_CodeSniffer\Files\File;
3232
use PHPCSUtils\Tokens\Collections;

Inpsyde/Helpers/Objects.php

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

2727
declare(strict_types=1);
2828

29-
namespace Inpsyde\Helpers;
29+
namespace Inpsyde\CodingStandard\Helpers;
3030

3131
use PHP_CodeSniffer\Files\File;
3232
use PHPCSUtils\Tokens\Collections;

Inpsyde/Helpers/WpHooks.php

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

2727
declare(strict_types=1);
2828

29-
namespace Inpsyde\Helpers;
29+
namespace Inpsyde\CodingStandard\Helpers;
3030

3131
use PHP_CodeSniffer\Files\File;
3232
use PHP_CodeSniffer\Util\Tokens;

Inpsyde/Sniffs/CodeQuality/ArgumentTypeDeclarationSniff.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828

2929
namespace Inpsyde\Sniffs\CodeQuality;
3030

31-
use Inpsyde\Helpers\FunctionDocBlock;
32-
use Inpsyde\Helpers\Functions;
33-
use Inpsyde\Helpers\WpHooks;
31+
use Inpsyde\CodingStandard\Helpers\FunctionDocBlock;
32+
use Inpsyde\CodingStandard\Helpers\Functions;
33+
use Inpsyde\CodingStandard\Helpers\WpHooks;
3434
use PHP_CodeSniffer\Sniffs\Sniff;
3535
use PHP_CodeSniffer\Files\File;
3636
use PHPCSUtils\Utils\FunctionDeclarations;

Inpsyde/Sniffs/CodeQuality/ElementNameMinimalLengthSniff.php

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

2929
namespace Inpsyde\Sniffs\CodeQuality;
3030

31-
use Inpsyde\Helpers\Names;
31+
use Inpsyde\CodingStandard\Helpers\Names;
3232
use PHP_CodeSniffer\Files\File;
3333
use PHP_CodeSniffer\Sniffs\Sniff;
3434

0 commit comments

Comments
 (0)