Skip to content

Commit 11665c4

Browse files
authored
Merge pull request #19 from PHPCSStandards/feature/check-complete-change-namespace
CheckSniffCompleteness: change namespace
2 parents e8e2b25 + b7c3074 commit 11665c4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Scripts/CheckSniffCompleteness.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @link https://github.com/PHPCSStandards/PHPCSDevTools
99
*/
1010

11-
namespace PHPCSStandards\Scripts;
11+
namespace PHPCSDevTools\Scripts;
1212

1313
/**
1414
* Check that each sniff is feature complete, i.e. has unit tests and documentation.

Scripts/FileList.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @link https://github.com/PHPCSStandards/PHPCSDevTools
99
*/
1010

11-
namespace PHPCSStandards\Scripts;
11+
namespace PHPCSDevTools\Scripts;
1212

1313
use FilesystemIterator;
1414
use RecursiveDirectoryIterator;

bin/phpcs-check-feature-completeness

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ if (is_file(__DIR__.'/../autoload.php') === true) {
4040
require_once __DIR__ . '/../Scripts/CheckSniffCompleteness.php';
4141
}
4242

43-
$validate = new PHPCSStandards\Scripts\CheckSniffCompleteness();
43+
$validate = new PHPCSDevTools\Scripts\CheckSniffCompleteness();
4444
$validate->validate();

0 commit comments

Comments
 (0)