Skip to content

Commit

Permalink
CheckSniffCompleteness: change namespace
Browse files Browse the repository at this point in the history
Use the package name, rather than the organization name.
  • Loading branch information
jrfnl committed Dec 13, 2019
1 parent 04556f1 commit b7c3074
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Scripts/CheckSniffCompleteness.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @link https://github.com/PHPCSStandards/PHPCSDevTools
*/

namespace PHPCSStandards\Scripts;
namespace PHPCSDevTools\Scripts;

/**
* Check that each sniff is feature complete, i.e. has unit tests and documentation.
Expand Down
2 changes: 1 addition & 1 deletion Scripts/FileList.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @link https://github.com/PHPCSStandards/PHPCSDevTools
*/

namespace PHPCSStandards\Scripts;
namespace PHPCSDevTools\Scripts;

use FilesystemIterator;
use RecursiveDirectoryIterator;
Expand Down
2 changes: 1 addition & 1 deletion bin/phpcs-check-feature-completeness
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ if (is_file(__DIR__.'/../autoload.php') === true) {
require_once __DIR__ . '/../Scripts/CheckSniffCompleteness.php';
}

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

0 comments on commit b7c3074

Please sign in to comment.