From 97d94c29773b2407e6bcdd14bcd2cb60f56fc773 Mon Sep 17 00:00:00 2001
From: jrfnl
Date: Tue, 7 Nov 2023 00:09:34 +0100
Subject: [PATCH 1/6] GH Actions: update workflows
---
.github/workflows/manage-labels.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/manage-labels.yml b/.github/workflows/manage-labels.yml
index f2b074e8c2..e3229cd7c4 100644
--- a/.github/workflows/manage-labels.yml
+++ b/.github/workflows/manage-labels.yml
@@ -12,7 +12,7 @@ on:
jobs:
on-issue-close:
runs-on: ubuntu-latest
- if: github.repository_owner == 'squizlabs' && github.event.issue.state == 'closed'
+ if: github.repository_owner == 'PHPCSStandards' && github.event.issue.state == 'closed'
name: Clean up labels on issue close
@@ -28,7 +28,7 @@ jobs:
on-pr-merge:
runs-on: ubuntu-latest
- if: github.repository_owner == 'squizlabs' && github.event.pull_request.merged == true
+ if: github.repository_owner == 'PHPCSStandards' && github.event.pull_request.merged == true
name: Clean up labels on PR merge
@@ -44,7 +44,7 @@ jobs:
on-pr-close:
runs-on: ubuntu-latest
- if: github.repository_owner == 'squizlabs' && github.event_name == 'pull_request_target' && github.event.pull_request.merged == false
+ if: github.repository_owner == 'PHPCSStandards' && github.event_name == 'pull_request_target' && github.event.pull_request.merged == false
name: Clean up labels on PR close
From f6dc841498ab8b056ba0bb8f6785ed634700b34e Mon Sep 17 00:00:00 2001
From: jrfnl
Date: Tue, 7 Nov 2023 00:08:33 +0100
Subject: [PATCH 2/6] Composer: update package name
... and indicate that this package replaces `squizlabs/php_codesniffer`.
---
README.md | 6 +++---
composer.json | 5 ++++-
2 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
index 859de432c6..b74227b929 100644
--- a/README.md
+++ b/README.md
@@ -34,16 +34,16 @@ php phpcbf.phar -h
### Composer
If you use Composer, you can install PHP_CodeSniffer system-wide with the following command:
```bash
-composer global require "squizlabs/php_codesniffer=*"
+composer global require "phpcsstandards/php_codesniffer=*"
```
Make sure you have the composer bin dir in your PATH. The default value is `~/.composer/vendor/bin/`, but you can check the value that you need to use by running `composer global config bin-dir --absolute`.
-Or alternatively, include a dependency for `squizlabs/php_codesniffer` in your `composer.json` file. For example:
+Or alternatively, include a dependency for `phpcsstandards/php_codesniffer` in your `composer.json` file. For example:
```json
{
"require-dev": {
- "squizlabs/php_codesniffer": "3.*"
+ "phpcsstandards/php_codesniffer": "^3.0"
}
}
```
diff --git a/composer.json b/composer.json
index 37f41a0b80..0e6c53315f 100644
--- a/composer.json
+++ b/composer.json
@@ -1,5 +1,5 @@
{
- "name": "squizlabs/php_codesniffer",
+ "name": "phpcsstandards/php_codesniffer",
"description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
"type": "library",
"keywords": [
@@ -34,6 +34,9 @@
"require-dev": {
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
},
+ "replace": {
+ "squizlabs/php_codesniffer": "> 2.0"
+ },
"bin": [
"bin/phpcs",
"bin/phpcbf"
From 41b0e05ec10268a9d9107c65aaf81193557cf699 Mon Sep 17 00:00:00 2001
From: jrfnl
Date: Tue, 7 Nov 2023 00:09:48 +0100
Subject: [PATCH 3/6] Composer: update repo address
---
composer.json | 18 +++++++++++++-----
1 file changed, 13 insertions(+), 5 deletions(-)
diff --git a/composer.json b/composer.json
index 0e6c53315f..3a0b91aecf 100644
--- a/composer.json
+++ b/composer.json
@@ -7,18 +7,26 @@
"standards",
"static analysis"
],
- "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
+ "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Greg Sherwood",
- "role": "lead"
+ "role": "Former lead"
+ },
+ {
+ "name": "Juliette Reinders Folmer",
+ "role": "Current lead"
+ },
+ {
+ "name" : "Contributors",
+ "homepage" : "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
}
],
"support": {
- "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
- "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki",
- "source": "https://github.com/squizlabs/PHP_CodeSniffer"
+ "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
+ "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki",
+ "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer"
},
"extra": {
"branch-alias": {
From c071f8138be2969a36ad20274068eab0cf17fe5e Mon Sep 17 00:00:00 2001
From: jrfnl
Date: Tue, 7 Nov 2023 00:18:54 +0100
Subject: [PATCH 4/6] README: remove link to analysis reports
The analysis reports are currently very out-of-date, with the last update having been run in February 2018.
I'm not (yet) sure whether those will be republished.
---
README.md | 1 -
1 file changed, 1 deletion(-)
diff --git a/README.md b/README.md
index b74227b929..eca5c472c0 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,6 @@ PHP_CodeSniffer is a set of two PHP scripts; the main `phpcs` script that tokeni
[](https://github.com/squizlabs/PHP_CodeSniffer/actions)
[](https://github.com/squizlabs/PHP_CodeSniffer/actions)
-[](http://squizlabs.github.io/PHP_CodeSniffer/analysis/squizlabs/PHP_CodeSniffer)
[](https://gitter.im/squizlabs/PHP_CodeSniffer?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
## Requirements
From 7f9983fe659c019a1a74966c1e00b020bcbe5d59 Mon Sep 17 00:00:00 2001
From: jrfnl
Date: Tue, 7 Nov 2023 00:20:10 +0100
Subject: [PATCH 5/6] README: remove Gitter badge
For the time being, I have no intention of registering the PHPCSStandards organisation/this repo with Gitter. For now, discussions will have to do.
This may be revisited in the future.
---
README.md | 1 -
1 file changed, 1 deletion(-)
diff --git a/README.md b/README.md
index eca5c472c0..509218b92c 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,6 @@ PHP_CodeSniffer is a set of two PHP scripts; the main `phpcs` script that tokeni
[](https://github.com/squizlabs/PHP_CodeSniffer/actions)
[](https://github.com/squizlabs/PHP_CodeSniffer/actions)
-[](https://gitter.im/squizlabs/PHP_CodeSniffer?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
## Requirements
From c855348766a424d23425eba5cc4420e26e4a3e38 Mon Sep 17 00:00:00 2001
From: jrfnl
Date: Tue, 7 Nov 2023 00:11:33 +0100
Subject: [PATCH 6/6] Update repo references everywhere
... with the exception of issue/PR links as those should still point to the old location.
---
README.md | 16 ++++++++--------
autoload.php | 2 +-
bin/phpcbf | 2 +-
bin/phpcbf.bat | 2 +-
bin/phpcs | 2 +-
bin/phpcs.bat | 2 +-
scripts/build-phar.php | 2 +-
src/Config.php | 2 +-
src/Exceptions/DeepExitException.php | 2 +-
src/Exceptions/RuntimeException.php | 2 +-
src/Exceptions/TokenizerException.php | 2 +-
src/Files/DummyFile.php | 2 +-
src/Files/File.php | 2 +-
src/Files/FileList.php | 2 +-
src/Files/LocalFile.php | 2 +-
src/Filters/ExactMatch.php | 2 +-
src/Filters/Filter.php | 2 +-
src/Filters/GitModified.php | 2 +-
src/Filters/GitStaged.php | 2 +-
src/Fixer.php | 2 +-
src/Generators/Generator.php | 2 +-
src/Generators/HTML.php | 4 ++--
src/Generators/Markdown.php | 4 ++--
src/Generators/Text.php | 2 +-
src/Reporter.php | 2 +-
src/Reports/Cbf.php | 2 +-
src/Reports/Checkstyle.php | 2 +-
src/Reports/Code.php | 2 +-
src/Reports/Csv.php | 2 +-
src/Reports/Diff.php | 2 +-
src/Reports/Emacs.php | 2 +-
src/Reports/Full.php | 2 +-
src/Reports/Gitblame.php | 2 +-
src/Reports/Hgblame.php | 2 +-
src/Reports/Info.php | 2 +-
src/Reports/Json.php | 2 +-
src/Reports/Junit.php | 2 +-
src/Reports/Notifysend.php | 2 +-
src/Reports/Report.php | 2 +-
src/Reports/Source.php | 2 +-
src/Reports/Summary.php | 2 +-
src/Reports/Svnblame.php | 2 +-
src/Reports/VersionControl.php | 2 +-
src/Reports/Xml.php | 2 +-
src/Ruleset.php | 2 +-
src/Runner.php | 2 +-
src/Sniffs/AbstractArraySniff.php | 2 +-
src/Sniffs/AbstractPatternSniff.php | 2 +-
src/Sniffs/AbstractScopeSniff.php | 2 +-
src/Sniffs/AbstractVariableSniff.php | 2 +-
src/Sniffs/Sniff.php | 2 +-
.../Generic/Sniffs/Arrays/ArrayIndentSniff.php | 2 +-
.../Arrays/DisallowLongArraySyntaxSniff.php | 2 +-
.../Arrays/DisallowShortArraySyntaxSniff.php | 2 +-
.../Sniffs/Classes/DuplicateClassNameSniff.php | 2 +-
.../Sniffs/Classes/OpeningBraceSameLineSniff.php | 2 +-
.../CodeAnalysis/AssignmentInConditionSniff.php | 2 +-
.../CodeAnalysis/EmptyPHPStatementSniff.php | 2 +-
.../Sniffs/CodeAnalysis/EmptyStatementSniff.php | 2 +-
.../ForLoopShouldBeWhileLoopSniff.php | 2 +-
.../ForLoopWithTestFunctionCallSniff.php | 2 +-
.../CodeAnalysis/JumbledIncrementerSniff.php | 2 +-
.../UnconditionalIfStatementSniff.php | 2 +-
.../UnnecessaryFinalModifierSniff.php | 2 +-
.../UnusedFunctionParameterSniff.php | 2 +-
.../UselessOverridingMethodSniff.php | 2 +-
.../Sniffs/Commenting/DocCommentSniff.php | 2 +-
.../Generic/Sniffs/Commenting/FixmeSniff.php | 2 +-
.../Generic/Sniffs/Commenting/TodoSniff.php | 2 +-
.../DisallowYodaConditionsSniff.php | 2 +-
.../InlineControlStructureSniff.php | 2 +-
.../Generic/Sniffs/Debug/CSSLintSniff.php | 2 +-
.../Generic/Sniffs/Debug/ClosureLinterSniff.php | 2 +-
.../Generic/Sniffs/Debug/ESLintSniff.php | 2 +-
.../Generic/Sniffs/Debug/JSHintSniff.php | 2 +-
.../Generic/Sniffs/Files/ByteOrderMarkSniff.php | 2 +-
.../Generic/Sniffs/Files/EndFileNewlineSniff.php | 2 +-
.../Sniffs/Files/EndFileNoNewlineSniff.php | 2 +-
.../Generic/Sniffs/Files/ExecutableFileSniff.php | 2 +-
.../Generic/Sniffs/Files/InlineHTMLSniff.php | 2 +-
.../Generic/Sniffs/Files/LineEndingsSniff.php | 2 +-
.../Generic/Sniffs/Files/LineLengthSniff.php | 2 +-
.../Sniffs/Files/LowercasedFilenameSniff.php | 2 +-
.../Sniffs/Files/OneClassPerFileSniff.php | 2 +-
.../Sniffs/Files/OneInterfacePerFileSniff.php | 2 +-
.../Files/OneObjectStructurePerFileSniff.php | 2 +-
.../Sniffs/Files/OneTraitPerFileSniff.php | 2 +-
.../DisallowMultipleStatementsSniff.php | 2 +-
.../MultipleStatementAlignmentSniff.php | 2 +-
.../Sniffs/Formatting/NoSpaceAfterCastSniff.php | 2 +-
.../Sniffs/Formatting/SpaceAfterCastSniff.php | 2 +-
.../Sniffs/Formatting/SpaceAfterNotSniff.php | 2 +-
.../Sniffs/Formatting/SpaceBeforeCastSniff.php | 2 +-
.../Functions/CallTimePassByReferenceSniff.php | 2 +-
.../FunctionCallArgumentSpacingSniff.php | 2 +-
.../OpeningFunctionBraceBsdAllmanSniff.php | 2 +-
...OpeningFunctionBraceKernighanRitchieSniff.php | 2 +-
.../Sniffs/Metrics/CyclomaticComplexitySniff.php | 2 +-
.../Generic/Sniffs/Metrics/NestingLevelSniff.php | 2 +-
.../AbstractClassNamePrefixSniff.php | 2 +-
.../CamelCapsFunctionNameSniff.php | 2 +-
.../NamingConventions/ConstructorNameSniff.php | 2 +-
.../InterfaceNameSuffixSniff.php | 2 +-
.../NamingConventions/TraitNameSuffixSniff.php | 2 +-
.../UpperCaseConstantNameSniff.php | 2 +-
.../Generic/Sniffs/PHP/BacktickOperatorSniff.php | 2 +-
.../PHP/CharacterBeforePHPOpeningTagSniff.php | 2 +-
.../Generic/Sniffs/PHP/ClosingPHPTagSniff.php | 2 +-
.../Sniffs/PHP/DeprecatedFunctionsSniff.php | 2 +-
.../PHP/DisallowAlternativePHPTagsSniff.php | 2 +-
.../PHP/DisallowRequestSuperglobalSniff.php | 2 +-
.../Sniffs/PHP/DisallowShortOpenTagSniff.php | 2 +-
.../Generic/Sniffs/PHP/DiscourageGotoSniff.php | 2 +-
.../Sniffs/PHP/ForbiddenFunctionsSniff.php | 2 +-
.../Sniffs/PHP/LowerCaseConstantSniff.php | 2 +-
.../Generic/Sniffs/PHP/LowerCaseKeywordSniff.php | 2 +-
.../Generic/Sniffs/PHP/LowerCaseTypeSniff.php | 2 +-
.../Generic/Sniffs/PHP/NoSilencedErrorsSniff.php | 2 +-
.../Sniffs/PHP/RequireStrictTypesSniff.php | 2 +-
.../Generic/Sniffs/PHP/SAPIUsageSniff.php | 2 +-
src/Standards/Generic/Sniffs/PHP/SyntaxSniff.php | 2 +-
.../Sniffs/PHP/UpperCaseConstantSniff.php | 2 +-
.../Strings/UnnecessaryStringConcatSniff.php | 2 +-
.../VersionControl/GitMergeConflictSniff.php | 2 +-
.../VersionControl/SubversionPropertiesSniff.php | 2 +-
.../ArbitraryParenthesesSpacingSniff.php | 2 +-
.../WhiteSpace/DisallowSpaceIndentSniff.php | 2 +-
.../Sniffs/WhiteSpace/DisallowTabIndentSniff.php | 2 +-
.../IncrementDecrementSpacingSniff.php | 2 +-
.../WhiteSpace/LanguageConstructSpacingSniff.php | 2 +-
.../Sniffs/WhiteSpace/ScopeIndentSniff.php | 2 +-
.../SpreadOperatorSpacingAfterSniff.php | 2 +-
.../Generic/Tests/Arrays/ArrayIndentUnitTest.php | 2 +-
.../Arrays/DisallowLongArraySyntaxUnitTest.php | 2 +-
.../Arrays/DisallowShortArraySyntaxUnitTest.php | 2 +-
.../Tests/Classes/DuplicateClassNameUnitTest.php | 2 +-
.../Classes/OpeningBraceSameLineUnitTest.php | 2 +-
.../AssignmentInConditionUnitTest.php | 2 +-
.../CodeAnalysis/EmptyPHPStatementUnitTest.php | 2 +-
.../CodeAnalysis/EmptyStatementUnitTest.php | 2 +-
.../ForLoopShouldBeWhileLoopUnitTest.php | 2 +-
.../ForLoopWithTestFunctionCallUnitTest.php | 2 +-
.../CodeAnalysis/JumbledIncrementerUnitTest.php | 2 +-
.../UnconditionalIfStatementUnitTest.php | 2 +-
.../UnnecessaryFinalModifierUnitTest.php | 2 +-
.../UnusedFunctionParameterUnitTest.php | 2 +-
.../UselessOverridingMethodUnitTest.php | 2 +-
.../Tests/Commenting/DocCommentUnitTest.inc | 6 +++---
.../Commenting/DocCommentUnitTest.inc.fixed | 6 +++---
.../Tests/Commenting/DocCommentUnitTest.js | 6 +++---
.../Tests/Commenting/DocCommentUnitTest.js.fixed | 6 +++---
.../Tests/Commenting/DocCommentUnitTest.php | 2 +-
.../Generic/Tests/Commenting/FixmeUnitTest.php | 2 +-
.../Generic/Tests/Commenting/TodoUnitTest.php | 2 +-
.../DisallowYodaConditionsUnitTest.php | 2 +-
.../InlineControlStructureUnitTest.php | 2 +-
.../Generic/Tests/Debug/CSSLintUnitTest.php | 2 +-
.../Tests/Debug/ClosureLinterUnitTest.php | 2 +-
.../Generic/Tests/Debug/ESLintUnitTest.php | 2 +-
.../Generic/Tests/Debug/JSHintUnitTest.php | 2 +-
.../Tests/Files/ByteOrderMarkUnitTest.php | 2 +-
.../Tests/Files/EndFileNewlineUnitTest.php | 2 +-
.../Tests/Files/EndFileNoNewlineUnitTest.php | 2 +-
.../Tests/Files/ExecutableFileUnitTest.php | 2 +-
.../Generic/Tests/Files/InlineHTMLUnitTest.php | 2 +-
.../Generic/Tests/Files/LineEndingsUnitTest.php | 2 +-
.../Generic/Tests/Files/LineLengthUnitTest.php | 2 +-
.../Tests/Files/LowercasedFilenameUnitTest.php | 2 +-
.../Tests/Files/OneClassPerFileUnitTest.php | 2 +-
.../Tests/Files/OneInterfacePerFileUnitTest.php | 2 +-
.../Files/OneObjectStructurePerFileUnitTest.php | 2 +-
.../Tests/Files/OneTraitPerFileUnitTest.php | 2 +-
.../DisallowMultipleStatementsUnitTest.php | 2 +-
.../MultipleStatementAlignmentUnitTest.php | 2 +-
.../Formatting/NoSpaceAfterCastUnitTest.php | 2 +-
.../Tests/Formatting/SpaceAfterCastUnitTest.php | 2 +-
.../Tests/Formatting/SpaceAfterNotUnitTest.php | 2 +-
.../Tests/Formatting/SpaceBeforeCastUnitTest.php | 2 +-
.../CallTimePassByReferenceUnitTest.php | 2 +-
.../FunctionCallArgumentSpacingUnitTest.php | 2 +-
.../OpeningFunctionBraceBsdAllmanUnitTest.php | 2 +-
...ningFunctionBraceKernighanRitchieUnitTest.php | 2 +-
.../Metrics/CyclomaticComplexityUnitTest.php | 2 +-
.../Tests/Metrics/NestingLevelUnitTest.php | 2 +-
.../AbstractClassNamePrefixUnitTest.php | 2 +-
.../CamelCapsFunctionNameUnitTest.php | 2 +-
.../ConstructorNameUnitTest.php | 2 +-
.../InterfaceNameSuffixUnitTest.php | 2 +-
.../TraitNameSuffixUnitTest.php | 2 +-
.../UpperCaseConstantNameUnitTest.php | 2 +-
.../Tests/PHP/BacktickOperatorUnitTest.php | 2 +-
.../PHP/CharacterBeforePHPOpeningTagUnitTest.php | 2 +-
.../Generic/Tests/PHP/ClosingPHPTagUnitTest.php | 2 +-
.../Tests/PHP/DeprecatedFunctionsUnitTest.php | 2 +-
.../PHP/DisallowAlternativePHPTagsUnitTest.php | 2 +-
.../PHP/DisallowRequestSuperglobalUnitTest.php | 2 +-
.../Tests/PHP/DisallowShortOpenTagUnitTest.php | 2 +-
.../Generic/Tests/PHP/DiscourageGotoUnitTest.php | 2 +-
.../Tests/PHP/ForbiddenFunctionsUnitTest.php | 2 +-
.../Tests/PHP/LowerCaseConstantUnitTest.php | 2 +-
.../Tests/PHP/LowerCaseKeywordUnitTest.php | 2 +-
.../Generic/Tests/PHP/LowerCaseTypeUnitTest.php | 2 +-
.../Tests/PHP/NoSilencedErrorsUnitTest.php | 2 +-
.../Tests/PHP/RequireStrictTypesUnitTest.php | 2 +-
.../Generic/Tests/PHP/SAPIUsageUnitTest.php | 2 +-
.../Generic/Tests/PHP/SyntaxUnitTest.php | 2 +-
.../Tests/PHP/UpperCaseConstantUnitTest.php | 2 +-
.../Strings/UnnecessaryStringConcatUnitTest.php | 2 +-
.../VersionControl/GitMergeConflictUnitTest.php | 2 +-
.../SubversionPropertiesUnitTest.php | 2 +-
.../ArbitraryParenthesesSpacingUnitTest.php | 2 +-
.../WhiteSpace/DisallowSpaceIndentUnitTest.php | 2 +-
.../WhiteSpace/DisallowTabIndentUnitTest.php | 2 +-
.../IncrementDecrementSpacingUnitTest.php | 2 +-
.../LanguageConstructSpacingUnitTest.php | 2 +-
.../Tests/WhiteSpace/ScopeIndentUnitTest.php | 2 +-
.../SpreadOperatorSpacingAfterUnitTest.php | 2 +-
.../Sniffs/CSS/BrowserSpecificStylesSniff.php | 2 +-
.../Sniffs/Channels/DisallowSelfActionsSniff.php | 2 +-
.../Sniffs/Channels/IncludeOwnSystemSniff.php | 2 +-
.../Sniffs/Channels/IncludeSystemSniff.php | 2 +-
.../Sniffs/Channels/UnusedSystemSniff.php | 2 +-
.../Sniffs/Commenting/FunctionCommentSniff.php | 2 +-
.../MySource/Sniffs/Debug/DebugCodeSniff.php | 2 +-
.../Sniffs/Debug/FirebugConsoleSniff.php | 2 +-
.../MySource/Sniffs/Objects/AssignThisSniff.php | 2 +-
.../Objects/CreateWidgetTypeCallbackSniff.php | 2 +-
.../Sniffs/Objects/DisallowNewWidgetSniff.php | 2 +-
.../Sniffs/PHP/AjaxNullComparisonSniff.php | 2 +-
.../Sniffs/PHP/EvalObjectFactorySniff.php | 2 +-
.../MySource/Sniffs/PHP/GetRequestDataSniff.php | 2 +-
.../Sniffs/PHP/ReturnFunctionValueSniff.php | 2 +-
.../MySource/Sniffs/Strings/JoinStringsSniff.php | 2 +-
.../Tests/CSS/BrowserSpecificStylesUnitTest.php | 2 +-
.../Channels/DisallowSelfActionsUnitTest.php | 2 +-
.../Tests/Channels/IncludeSystemUnitTest.php | 2 +-
.../Tests/Channels/UnusedSystemUnitTest.php | 2 +-
.../Tests/Commenting/FunctionCommentUnitTest.php | 2 +-
.../MySource/Tests/Debug/DebugCodeUnitTest.php | 2 +-
.../Tests/Debug/FirebugConsoleUnitTest.php | 2 +-
.../Tests/Objects/AssignThisUnitTest.php | 2 +-
.../Objects/CreateWidgetTypeCallbackUnitTest.php | 2 +-
.../Tests/Objects/DisallowNewWidgetUnitTest.php | 2 +-
.../Tests/PHP/AjaxNullComparisonUnitTest.php | 2 +-
.../Tests/PHP/EvalObjectFactoryUnitTest.php | 2 +-
.../Tests/PHP/GetRequestDataUnitTest.php | 2 +-
.../Tests/PHP/ReturnFunctionValueUnitTest.php | 2 +-
.../Tests/Strings/JoinStringsUnitTest.php | 2 +-
.../Sniffs/Classes/ClassDeclarationSniff.php | 2 +-
.../PEAR/Sniffs/Commenting/ClassCommentSniff.php | 2 +-
.../PEAR/Sniffs/Commenting/FileCommentSniff.php | 2 +-
.../Sniffs/Commenting/FunctionCommentSniff.php | 2 +-
.../Sniffs/Commenting/InlineCommentSniff.php | 2 +-
.../ControlStructures/ControlSignatureSniff.php | 2 +-
.../MultiLineConditionSniff.php | 2 +-
.../PEAR/Sniffs/Files/IncludingFileSniff.php | 2 +-
.../Formatting/MultiLineAssignmentSniff.php | 2 +-
.../Functions/FunctionCallSignatureSniff.php | 2 +-
.../Functions/FunctionDeclarationSniff.php | 2 +-
.../Sniffs/Functions/ValidDefaultValueSniff.php | 2 +-
.../NamingConventions/ValidClassNameSniff.php | 2 +-
.../NamingConventions/ValidFunctionNameSniff.php | 2 +-
.../NamingConventions/ValidVariableNameSniff.php | 2 +-
.../WhiteSpace/ObjectOperatorIndentSniff.php | 2 +-
.../Sniffs/WhiteSpace/ScopeClosingBraceSniff.php | 2 +-
.../PEAR/Sniffs/WhiteSpace/ScopeIndentSniff.php | 2 +-
.../Tests/Classes/ClassDeclarationUnitTest.php | 2 +-
.../Tests/Commenting/ClassCommentUnitTest.inc | 8 ++++----
.../Tests/Commenting/ClassCommentUnitTest.php | 2 +-
.../Tests/Commenting/FileCommentUnitTest.php | 2 +-
.../Tests/Commenting/FunctionCommentUnitTest.php | 2 +-
.../Tests/Commenting/InlineCommentUnitTest.php | 2 +-
.../ControlSignatureUnitTest.php | 2 +-
.../MultiLineConditionUnitTest.php | 2 +-
.../PEAR/Tests/Files/IncludingFileUnitTest.php | 2 +-
.../Formatting/MultiLineAssignmentUnitTest.php | 2 +-
.../Functions/FunctionCallSignatureUnitTest.php | 2 +-
.../Functions/FunctionDeclarationUnitTest.php | 2 +-
.../Functions/ValidDefaultValueUnitTest.php | 2 +-
.../NamingConventions/ValidClassNameUnitTest.php | 2 +-
.../ValidFunctionNameUnitTest.php | 2 +-
.../ValidVariableNameUnitTest.php | 2 +-
.../WhiteSpace/ObjectOperatorIndentUnitTest.php | 2 +-
.../WhiteSpace/ScopeClosingBraceUnitTest.php | 2 +-
.../Tests/WhiteSpace/ScopeIndentUnitTest.php | 2 +-
.../Sniffs/Classes/ClassDeclarationSniff.php | 2 +-
.../PSR1/Sniffs/Files/SideEffectsSniff.php | 2 +-
.../Sniffs/Methods/CamelCapsMethodNameSniff.php | 2 +-
.../Tests/Classes/ClassDeclarationUnitTest.php | 2 +-
.../PSR1/Tests/Files/SideEffectsUnitTest.php | 2 +-
.../Methods/CamelCapsMethodNameUnitTest.php | 2 +-
.../Sniffs/Classes/AnonClassDeclarationSniff.php | 2 +-
.../Sniffs/Classes/ClassInstantiationSniff.php | 2 +-
.../PSR12/Sniffs/Classes/ClosingBraceSniff.php | 2 +-
.../Sniffs/Classes/OpeningBraceSpaceSniff.php | 2 +-
.../BooleanOperatorPlacementSniff.php | 2 +-
.../ControlStructureSpacingSniff.php | 2 +-
.../PSR12/Sniffs/Files/DeclareStatementSniff.php | 2 +-
.../PSR12/Sniffs/Files/FileHeaderSniff.php | 2 +-
.../PSR12/Sniffs/Files/ImportStatementSniff.php | 2 +-
.../PSR12/Sniffs/Files/OpenTagSniff.php | 2 +-
.../Functions/NullableTypeDeclarationSniff.php | 2 +-
.../Functions/ReturnTypeDeclarationSniff.php | 2 +-
.../Keywords/ShortFormTypeKeywordsSniff.php | 2 +-
.../Namespaces/CompoundNamespaceDepthSniff.php | 2 +-
.../Sniffs/Operators/OperatorSpacingSniff.php | 2 +-
.../Properties/ConstantVisibilitySniff.php | 2 +-
.../PSR12/Sniffs/Traits/UseDeclarationSniff.php | 2 +-
.../Classes/AnonClassDeclarationUnitTest.php | 2 +-
.../Tests/Classes/ClassInstantiationUnitTest.php | 2 +-
.../PSR12/Tests/Classes/ClosingBraceUnitTest.php | 2 +-
.../Tests/Classes/OpeningBraceSpaceUnitTest.php | 2 +-
.../BooleanOperatorPlacementUnitTest.php | 2 +-
.../ControlStructureSpacingUnitTest.php | 2 +-
.../Tests/Files/DeclareStatementUnitTest.php | 2 +-
.../PSR12/Tests/Files/FileHeaderUnitTest.php | 2 +-
.../Tests/Files/ImportStatementUnitTest.php | 2 +-
.../PSR12/Tests/Files/OpenTagUnitTest.php | 2 +-
.../NullableTypeDeclarationUnitTest.php | 2 +-
.../Functions/ReturnTypeDeclarationUnitTest.php | 2 +-
.../Keywords/ShortFormTypeKeywordsUnitTest.php | 2 +-
.../CompoundNamespaceDepthUnitTest.php | 2 +-
.../Tests/Operators/OperatorSpacingUnitTest.php | 2 +-
.../Properties/ConstantVisibilityUnitTest.php | 2 +-
.../Tests/Traits/UseDeclarationUnitTest.php | 2 +-
.../Sniffs/Classes/ClassDeclarationSniff.php | 2 +-
.../Sniffs/Classes/PropertyDeclarationSniff.php | 2 +-
.../ControlStructureSpacingSniff.php | 2 +-
.../ControlStructures/ElseIfDeclarationSniff.php | 2 +-
.../ControlStructures/SwitchDeclarationSniff.php | 2 +-
.../PSR2/Sniffs/Files/ClosingTagSniff.php | 2 +-
.../PSR2/Sniffs/Files/EndFileNewlineSniff.php | 2 +-
.../Methods/FunctionCallSignatureSniff.php | 2 +-
.../Sniffs/Methods/FunctionClosingBraceSniff.php | 2 +-
.../Sniffs/Methods/MethodDeclarationSniff.php | 2 +-
.../Namespaces/NamespaceDeclarationSniff.php | 2 +-
.../Sniffs/Namespaces/UseDeclarationSniff.php | 2 +-
.../Tests/Classes/ClassDeclarationUnitTest.php | 2 +-
.../Classes/PropertyDeclarationUnitTest.php | 2 +-
.../ControlStructureSpacingUnitTest.php | 2 +-
.../ElseIfDeclarationUnitTest.php | 2 +-
.../SwitchDeclarationUnitTest.php | 2 +-
.../PSR2/Tests/Files/ClosingTagUnitTest.php | 2 +-
.../PSR2/Tests/Files/EndFileNewlineUnitTest.php | 2 +-
.../Methods/FunctionCallSignatureUnitTest.php | 2 +-
.../Methods/FunctionClosingBraceUnitTest.php | 2 +-
.../Tests/Methods/MethodDeclarationUnitTest.php | 2 +-
.../Namespaces/NamespaceDeclarationUnitTest.php | 2 +-
.../Tests/Namespaces/UseDeclarationUnitTest.php | 2 +-
.../Sniffs/Arrays/ArrayBracketSpacingSniff.php | 2 +-
.../Sniffs/Arrays/ArrayDeclarationSniff.php | 2 +-
.../ClassDefinitionClosingBraceSpaceSniff.php | 2 +-
.../CSS/ClassDefinitionNameSpacingSniff.php | 2 +-
.../ClassDefinitionOpeningBraceSpaceSniff.php | 2 +-
.../Squiz/Sniffs/CSS/ColonSpacingSniff.php | 2 +-
.../Squiz/Sniffs/CSS/ColourDefinitionSniff.php | 2 +-
.../DisallowMultipleStyleDefinitionsSniff.php | 2 +-
.../Sniffs/CSS/DuplicateClassDefinitionSniff.php | 2 +-
.../Sniffs/CSS/DuplicateStyleDefinitionSniff.php | 2 +-
.../Sniffs/CSS/EmptyClassDefinitionSniff.php | 2 +-
.../Sniffs/CSS/EmptyStyleDefinitionSniff.php | 2 +-
.../Squiz/Sniffs/CSS/ForbiddenStylesSniff.php | 2 +-
.../Squiz/Sniffs/CSS/IndentationSniff.php | 2 +-
.../Sniffs/CSS/LowercaseStyleDefinitionSniff.php | 2 +-
.../Squiz/Sniffs/CSS/MissingColonSniff.php | 2 +-
.../Squiz/Sniffs/CSS/NamedColoursSniff.php | 2 +-
src/Standards/Squiz/Sniffs/CSS/OpacitySniff.php | 2 +-
.../Squiz/Sniffs/CSS/SemicolonSpacingSniff.php | 2 +-
.../Squiz/Sniffs/CSS/ShorthandSizeSniff.php | 2 +-
.../Sniffs/Classes/ClassDeclarationSniff.php | 2 +-
.../Squiz/Sniffs/Classes/ClassFileNameSniff.php | 2 +-
.../Sniffs/Classes/DuplicatePropertySniff.php | 2 +-
.../Classes/LowercaseClassKeywordsSniff.php | 2 +-
.../Sniffs/Classes/SelfMemberReferenceSniff.php | 2 +-
.../Squiz/Sniffs/Classes/ValidClassNameSniff.php | 2 +-
.../Sniffs/Commenting/BlockCommentSniff.php | 2 +-
.../Sniffs/Commenting/ClassCommentSniff.php | 2 +-
.../ClosingDeclarationCommentSniff.php | 2 +-
.../Commenting/DocCommentAlignmentSniff.php | 2 +-
.../Sniffs/Commenting/EmptyCatchCommentSniff.php | 2 +-
.../Squiz/Sniffs/Commenting/FileCommentSniff.php | 2 +-
.../Sniffs/Commenting/FunctionCommentSniff.php | 2 +-
.../Commenting/FunctionCommentThrowTagSniff.php | 2 +-
.../Sniffs/Commenting/InlineCommentSniff.php | 2 +-
.../LongConditionClosingCommentSniff.php | 2 +-
.../Commenting/PostStatementCommentSniff.php | 2 +-
.../Sniffs/Commenting/VariableCommentSniff.php | 2 +-
.../ControlStructures/ControlSignatureSniff.php | 2 +-
.../ControlStructures/ElseIfDeclarationSniff.php | 2 +-
.../ForEachLoopDeclarationSniff.php | 2 +-
.../ForLoopDeclarationSniff.php | 2 +-
.../InlineIfDeclarationSniff.php | 2 +-
.../LowercaseDeclarationSniff.php | 2 +-
.../ControlStructures/SwitchDeclarationSniff.php | 2 +-
src/Standards/Squiz/Sniffs/Debug/JSLintSniff.php | 2 +-
.../Squiz/Sniffs/Debug/JavaScriptLintSniff.php | 2 +-
.../Squiz/Sniffs/Files/FileExtensionSniff.php | 2 +-
.../Sniffs/Formatting/OperatorBracketSniff.php | 2 +-
.../FunctionDeclarationArgumentSpacingSniff.php | 2 +-
.../Functions/FunctionDeclarationSniff.php | 2 +-
.../Functions/FunctionDuplicateArgumentSniff.php | 2 +-
.../Sniffs/Functions/GlobalFunctionSniff.php | 2 +-
.../Functions/LowercaseFunctionKeywordsSniff.php | 2 +-
.../MultiLineFunctionDeclarationSniff.php | 2 +-
.../NamingConventions/ValidFunctionNameSniff.php | 2 +-
.../NamingConventions/ValidVariableNameSniff.php | 2 +-
.../Objects/DisallowObjectStringIndexSniff.php | 2 +-
.../Sniffs/Objects/ObjectInstantiationSniff.php | 2 +-
.../Sniffs/Objects/ObjectMemberCommaSniff.php | 2 +-
.../Operators/ComparisonOperatorUsageSniff.php | 2 +-
.../Operators/IncrementDecrementUsageSniff.php | 2 +-
.../Operators/ValidLogicalOperatorsSniff.php | 2 +-
.../Squiz/Sniffs/PHP/CommentedOutCodeSniff.php | 2 +-
.../Sniffs/PHP/DisallowBooleanStatementSniff.php | 2 +-
.../PHP/DisallowComparisonAssignmentSniff.php | 2 +-
.../Squiz/Sniffs/PHP/DisallowInlineIfSniff.php | 2 +-
.../PHP/DisallowMultipleAssignmentsSniff.php | 2 +-
.../PHP/DisallowSizeFunctionsInLoopsSniff.php | 2 +-
.../Sniffs/PHP/DiscouragedFunctionsSniff.php | 2 +-
.../Squiz/Sniffs/PHP/EmbeddedPhpSniff.php | 2 +-
src/Standards/Squiz/Sniffs/PHP/EvalSniff.php | 2 +-
.../Squiz/Sniffs/PHP/GlobalKeywordSniff.php | 2 +-
src/Standards/Squiz/Sniffs/PHP/HeredocSniff.php | 2 +-
.../Squiz/Sniffs/PHP/InnerFunctionsSniff.php | 2 +-
.../Sniffs/PHP/LowercasePHPFunctionsSniff.php | 2 +-
.../Squiz/Sniffs/PHP/NonExecutableCodeSniff.php | 2 +-
.../Squiz/Sniffs/Scope/MemberVarScopeSniff.php | 2 +-
.../Squiz/Sniffs/Scope/MethodScopeSniff.php | 2 +-
.../Squiz/Sniffs/Scope/StaticThisUsageSniff.php | 2 +-
.../Sniffs/Strings/ConcatenationSpacingSniff.php | 2 +-
.../Sniffs/Strings/DoubleQuoteUsageSniff.php | 2 +-
.../Squiz/Sniffs/Strings/EchoedStringsSniff.php | 2 +-
.../Squiz/Sniffs/WhiteSpace/CastSpacingSniff.php | 2 +-
.../WhiteSpace/ControlStructureSpacingSniff.php | 2 +-
.../FunctionClosingBraceSpaceSniff.php | 2 +-
.../FunctionOpeningBraceSpaceSniff.php | 2 +-
.../Sniffs/WhiteSpace/FunctionSpacingSniff.php | 2 +-
.../WhiteSpace/LanguageConstructSpacingSniff.php | 2 +-
.../WhiteSpace/LogicalOperatorSpacingSniff.php | 2 +-
.../Sniffs/WhiteSpace/MemberVarSpacingSniff.php | 2 +-
.../WhiteSpace/ObjectOperatorSpacingSniff.php | 2 +-
.../Sniffs/WhiteSpace/OperatorSpacingSniff.php | 2 +-
.../WhiteSpace/PropertyLabelSpacingSniff.php | 2 +-
.../Sniffs/WhiteSpace/ScopeClosingBraceSniff.php | 2 +-
.../WhiteSpace/ScopeKeywordSpacingSniff.php | 2 +-
.../Sniffs/WhiteSpace/SemicolonSpacingSniff.php | 2 +-
.../WhiteSpace/SuperfluousWhitespaceSniff.php | 2 +-
.../Tests/Arrays/ArrayBracketSpacingUnitTest.php | 2 +-
.../Tests/Arrays/ArrayDeclarationUnitTest.php | 2 +-
.../ClassDefinitionClosingBraceSpaceUnitTest.php | 2 +-
.../CSS/ClassDefinitionNameSpacingUnitTest.php | 2 +-
.../ClassDefinitionOpeningBraceSpaceUnitTest.php | 2 +-
.../Squiz/Tests/CSS/ColonSpacingUnitTest.php | 2 +-
.../Squiz/Tests/CSS/ColourDefinitionUnitTest.php | 2 +-
.../DisallowMultipleStyleDefinitionsUnitTest.php | 2 +-
.../CSS/DuplicateClassDefinitionUnitTest.php | 2 +-
.../CSS/DuplicateStyleDefinitionUnitTest.php | 2 +-
.../Tests/CSS/EmptyClassDefinitionUnitTest.php | 2 +-
.../Tests/CSS/EmptyStyleDefinitionUnitTest.php | 2 +-
.../Squiz/Tests/CSS/ForbiddenStylesUnitTest.php | 2 +-
.../Squiz/Tests/CSS/IndentationUnitTest.php | 2 +-
.../CSS/LowercaseStyleDefinitionUnitTest.php | 2 +-
.../Squiz/Tests/CSS/MissingColonUnitTest.php | 2 +-
.../Squiz/Tests/CSS/NamedColoursUnitTest.php | 2 +-
.../Squiz/Tests/CSS/OpacityUnitTest.php | 2 +-
.../Squiz/Tests/CSS/SemicolonSpacingUnitTest.php | 2 +-
.../Squiz/Tests/CSS/ShorthandSizeUnitTest.php | 2 +-
.../Tests/Classes/ClassDeclarationUnitTest.php | 2 +-
.../Tests/Classes/ClassFileNameUnitTest.php | 2 +-
.../Tests/Classes/DuplicatePropertyUnitTest.php | 2 +-
.../Classes/LowercaseClassKeywordsUnitTest.php | 2 +-
.../Classes/SelfMemberReferenceUnitTest.php | 2 +-
.../Tests/Classes/ValidClassNameUnitTest.php | 2 +-
.../Tests/Commenting/BlockCommentUnitTest.php | 2 +-
.../Tests/Commenting/ClassCommentUnitTest.php | 2 +-
.../ClosingDeclarationCommentUnitTest.php | 2 +-
.../Commenting/DocCommentAlignmentUnitTest.php | 2 +-
.../Commenting/EmptyCatchCommentUnitTest.php | 2 +-
.../Tests/Commenting/FileCommentUnitTest.php | 2 +-
.../FunctionCommentThrowTagUnitTest.php | 2 +-
.../Tests/Commenting/FunctionCommentUnitTest.php | 2 +-
.../Tests/Commenting/InlineCommentUnitTest.php | 2 +-
.../LongConditionClosingCommentUnitTest.php | 2 +-
.../Commenting/PostStatementCommentUnitTest.php | 2 +-
.../Tests/Commenting/VariableCommentUnitTest.php | 2 +-
.../ControlSignatureUnitTest.php | 2 +-
.../ElseIfDeclarationUnitTest.php | 2 +-
.../ForEachLoopDeclarationUnitTest.php | 2 +-
.../ForLoopDeclarationUnitTest.php | 2 +-
.../InlineIfDeclarationUnitTest.php | 2 +-
.../LowercaseDeclarationUnitTest.php | 2 +-
.../SwitchDeclarationUnitTest.php | 2 +-
.../Squiz/Tests/Debug/JSLintUnitTest.php | 2 +-
.../Squiz/Tests/Debug/JavaScriptLintUnitTest.php | 2 +-
.../Squiz/Tests/Files/FileExtensionUnitTest.php | 2 +-
.../Tests/Formatting/OperatorBracketUnitTest.php | 2 +-
...unctionDeclarationArgumentSpacingUnitTest.php | 2 +-
.../Functions/FunctionDeclarationUnitTest.php | 2 +-
.../FunctionDuplicateArgumentUnitTest.php | 2 +-
.../Tests/Functions/GlobalFunctionUnitTest.php | 2 +-
.../LowercaseFunctionKeywordsUnitTest.php | 2 +-
.../MultiLineFunctionDeclarationUnitTest.php | 2 +-
.../ValidFunctionNameUnitTest.php | 2 +-
.../ValidVariableNameUnitTest.php | 2 +-
.../DisallowObjectStringIndexUnitTest.php | 2 +-
.../Objects/ObjectInstantiationUnitTest.php | 2 +-
.../Tests/Objects/ObjectMemberCommaUnitTest.php | 2 +-
.../ComparisonOperatorUsageUnitTest.php | 2 +-
.../IncrementDecrementUsageUnitTest.php | 2 +-
.../Operators/ValidLogicalOperatorsUnitTest.php | 2 +-
.../Squiz/Tests/PHP/CommentedOutCodeUnitTest.php | 2 +-
.../PHP/DisallowBooleanStatementUnitTest.php | 2 +-
.../PHP/DisallowComparisonAssignmentUnitTest.php | 2 +-
.../Squiz/Tests/PHP/DisallowInlineIfUnitTest.php | 2 +-
.../PHP/DisallowMultipleAssignmentsUnitTest.php | 2 +-
.../PHP/DisallowSizeFunctionsInLoopsUnitTest.php | 2 +-
.../Tests/PHP/DiscouragedFunctionsUnitTest.php | 2 +-
.../Squiz/Tests/PHP/EmbeddedPhpUnitTest.php | 2 +-
src/Standards/Squiz/Tests/PHP/EvalUnitTest.php | 2 +-
.../Squiz/Tests/PHP/GlobalKeywordUnitTest.php | 2 +-
.../Squiz/Tests/PHP/HeredocUnitTest.php | 2 +-
.../Squiz/Tests/PHP/InnerFunctionsUnitTest.php | 2 +-
.../Tests/PHP/LowercasePHPFunctionsUnitTest.php | 2 +-
.../Tests/PHP/NonExecutableCodeUnitTest.php | 2 +-
.../Squiz/Tests/Scope/MemberVarScopeUnitTest.php | 2 +-
.../Squiz/Tests/Scope/MethodScopeUnitTest.php | 2 +-
.../Tests/Scope/StaticThisUsageUnitTest.php | 2 +-
.../Strings/ConcatenationSpacingUnitTest.php | 2 +-
.../Tests/Strings/DoubleQuoteUsageUnitTest.php | 2 +-
.../Tests/Strings/EchoedStringsUnitTest.php | 2 +-
.../Tests/WhiteSpace/CastSpacingUnitTest.php | 2 +-
.../ControlStructureSpacingUnitTest.php | 2 +-
.../FunctionClosingBraceSpaceUnitTest.php | 2 +-
.../FunctionOpeningBraceSpaceUnitTest.php | 2 +-
.../Tests/WhiteSpace/FunctionSpacingUnitTest.php | 2 +-
.../LanguageConstructSpacingUnitTest.php | 2 +-
.../LogicalOperatorSpacingUnitTest.php | 2 +-
.../WhiteSpace/MemberVarSpacingUnitTest.php | 2 +-
.../WhiteSpace/ObjectOperatorSpacingUnitTest.php | 2 +-
.../Tests/WhiteSpace/OperatorSpacingUnitTest.php | 2 +-
.../WhiteSpace/PropertyLabelSpacingUnitTest.php | 2 +-
.../WhiteSpace/ScopeClosingBraceUnitTest.php | 2 +-
.../WhiteSpace/ScopeKeywordSpacingUnitTest.php | 2 +-
.../WhiteSpace/SemicolonSpacingUnitTest.php | 2 +-
.../WhiteSpace/SuperfluousWhitespaceUnitTest.php | 2 +-
.../Zend/Sniffs/Debug/CodeAnalyzerSniff.php | 2 +-
.../Zend/Sniffs/Files/ClosingTagSniff.php | 2 +-
.../NamingConventions/ValidVariableNameSniff.php | 2 +-
.../Zend/Tests/Debug/CodeAnalyzerUnitTest.php | 2 +-
.../Zend/Tests/Files/ClosingTagUnitTest.php | 2 +-
.../ValidVariableNameUnitTest.php | 2 +-
src/Tokenizers/CSS.php | 2 +-
src/Tokenizers/Comment.php | 2 +-
src/Tokenizers/JS.php | 2 +-
src/Tokenizers/PHP.php | 2 +-
src/Tokenizers/Tokenizer.php | 2 +-
src/Util/Cache.php | 2 +-
src/Util/Common.php | 2 +-
src/Util/Standards.php | 2 +-
src/Util/Timing.php | 2 +-
src/Util/Tokens.php | 2 +-
tests/AllTests.php | 2 +-
tests/Core/AbstractMethodUnitTest.php | 2 +-
tests/Core/AllTests.php | 2 +-
.../Core/Autoloader/DetermineLoadedClassTest.php | 2 +-
tests/Core/Config/ReportWidthTest.php | 2 +-
tests/Core/ErrorSuppressionTest.php | 2 +-
tests/Core/File/FindEndOfStatementTest.php | 2 +-
tests/Core/File/FindExtendedClassNameTest.php | 2 +-
.../File/FindImplementedInterfaceNamesTest.php | 2 +-
tests/Core/File/FindStartOfStatementTest.php | 2 +-
tests/Core/File/GetClassPropertiesTest.php | 2 +-
tests/Core/File/GetMemberPropertiesTest.php | 2 +-
tests/Core/File/GetMethodParametersTest.php | 2 +-
tests/Core/File/GetMethodPropertiesTest.php | 2 +-
tests/Core/File/IsReferenceTest.php | 2 +-
tests/Core/Filters/Filter/AcceptTest.php | 2 +-
tests/Core/IsCamelCapsTest.php | 2 +-
.../Ruleset/RuleInclusionAbsoluteLinuxTest.php | 2 +-
.../Ruleset/RuleInclusionAbsoluteLinuxTest.xml | 2 +-
.../Ruleset/RuleInclusionAbsoluteWindowsTest.php | 2 +-
.../Ruleset/RuleInclusionAbsoluteWindowsTest.xml | 2 +-
tests/Core/Ruleset/RuleInclusionTest-include.xml | 2 +-
tests/Core/Ruleset/RuleInclusionTest.php | 2 +-
.../Ruleset/SetPropertyAllowedAsDeclaredTest.xml | 2 +-
.../SetPropertyAllowedViaMagicMethodTest.xml | 2 +-
.../SetPropertyAllowedViaStdClassTest.xml | 2 +-
...iesPropertyToMultipleSniffsInCategoryTest.xml | 2 +-
...orOnInvalidPropertyWhenSetForCategoryTest.xml | 2 +-
...orOnInvalidPropertyWhenSetForStandardTest.xml | 2 +-
.../SetPropertyNotAllowedViaAttributeTest.xml | 2 +-
...tPropertyThrowsErrorOnInvalidPropertyTest.xml | 2 +-
tests/Core/Ruleset/SetSniffPropertyTest.php | 2 +-
tests/Core/Sniffs/AbstractArraySniffTest.php | 2 +-
tests/Core/Sniffs/AbstractArraySniffTestable.php | 2 +-
.../Tokenizer/AnonClassParenthesisOwnerTest.php | 2 +-
tests/Core/Tokenizer/ArrayKeywordTest.php | 2 +-
tests/Core/Tokenizer/AttributesTest.php | 2 +-
tests/Core/Tokenizer/BackfillEnumTest.php | 2 +-
.../BackfillExplicitOctalNotationTest.php | 2 +-
tests/Core/Tokenizer/BackfillFnTokenTest.php | 2 +-
tests/Core/Tokenizer/BackfillMatchTokenTest.php | 2 +-
.../Tokenizer/BackfillNumericSeparatorTest.php | 2 +-
tests/Core/Tokenizer/BackfillReadonlyTest.php | 2 +-
tests/Core/Tokenizer/BitwiseOrTest.php | 2 +-
.../Tokenizer/ContextSensitiveKeywordsTest.php | 2 +-
tests/Core/Tokenizer/DefaultKeywordTest.php | 2 +-
tests/Core/Tokenizer/DoubleArrowTest.php | 2 +-
tests/Core/Tokenizer/DoubleQuotedStringTest.php | 2 +-
tests/Core/Tokenizer/EnumCaseTest.php | 2 +-
tests/Core/Tokenizer/FinallyTest.php | 2 +-
tests/Core/Tokenizer/GotoLabelTest.php | 2 +-
tests/Core/Tokenizer/HeredocNowdocCloserTest.php | 2 +-
tests/Core/Tokenizer/HeredocStringTest.php | 2 +-
.../Tokenizer/NamedFunctionCallArgumentsTest.php | 2 +-
.../Tokenizer/NullsafeObjectOperatorTest.php | 2 +-
.../ScopeSettingWithNamespaceOperatorTest.php | 2 +-
tests/Core/Tokenizer/ShortArrayTest.php | 2 +-
.../Tokenizer/StableCommentWhitespaceTest.php | 2 +-
.../Tokenizer/StableCommentWhitespaceWinTest.php | 2 +-
tests/Core/Tokenizer/TypeIntersectionTest.php | 2 +-
.../UndoNamespacedNameSingleTokenTest.php | 2 +-
tests/FileList.php | 2 +-
tests/Standards/AbstractSniffUnitTest.php | 2 +-
tests/Standards/AllSniffs.php | 2 +-
tests/TestSuite.php | 2 +-
tests/TestSuite7.php | 2 +-
tests/bootstrap.php | 2 +-
628 files changed, 648 insertions(+), 648 deletions(-)
diff --git a/README.md b/README.md
index 509218b92c..6f6ac8c452 100644
--- a/README.md
+++ b/README.md
@@ -2,14 +2,14 @@
PHP_CodeSniffer is a set of two PHP scripts; the main `phpcs` script that tokenizes PHP, JavaScript and CSS files to detect violations of a defined coding standard, and a second `phpcbf` script to automatically correct coding standard violations. PHP_CodeSniffer is an essential development tool that ensures your code remains clean and consistent.
-[](https://github.com/squizlabs/PHP_CodeSniffer/actions)
-[](https://github.com/squizlabs/PHP_CodeSniffer/actions)
+[](https://github.com/PHPCSStandards/PHP_CodeSniffer/actions)
+[](https://github.com/PHPCSStandards/PHP_CodeSniffer/actions)
## Requirements
-PHP_CodeSniffer requires PHP version 5.4.0 or greater, although individual sniffs may have additional requirements such as external applications and scripts. See the [Configuration Options manual page](https://github.com/squizlabs/PHP_CodeSniffer/wiki/Configuration-Options) for a list of these requirements.
+PHP_CodeSniffer requires PHP version 5.4.0 or greater, although individual sniffs may have additional requirements such as external applications and scripts. See the [Configuration Options manual page](https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki/Configuration-Options) for a list of these requirements.
-If you're using PHP_CodeSniffer as part of a team, or you're running it on a [CI](https://en.wikipedia.org/wiki/Continuous_integration) server, you may want to configure your project's settings [using a configuration file](https://github.com/squizlabs/PHP_CodeSniffer/wiki/Advanced-Usage#using-a-default-configuration-file).
+If you're using PHP_CodeSniffer as part of a team, or you're running it on a [CI](https://en.wikipedia.org/wiki/Continuous_integration) server, you may want to configure your project's settings [using a configuration file](https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki/Advanced-Usage#using-a-default-configuration-file).
## Installation
@@ -70,7 +70,7 @@ pear install PHP_CodeSniffer
### Git Clone
You can also download the PHP_CodeSniffer source and run the `phpcs` and `phpcbf` commands directly from the Git clone:
```bash
-git clone https://github.com/squizlabs/PHP_CodeSniffer.git
+git clone https://github.com/PHPCSStandards/PHP_CodeSniffer.git
cd PHP_CodeSniffer
php bin/phpcs -h
php bin/phpcbf -h
@@ -92,15 +92,15 @@ phpcs --standard=PSR12 /path/to/code-directory
If PHP_CodeSniffer finds any coding standard errors, a report will be shown after running the command.
-Full usage information and example reports are available on the [usage page](https://github.com/squizlabs/PHP_CodeSniffer/wiki/Usage).
+Full usage information and example reports are available on the [usage page](https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki/Usage).
## Documentation
-The documentation for PHP_CodeSniffer is available on the [Github wiki](https://github.com/squizlabs/PHP_CodeSniffer/wiki).
+The documentation for PHP_CodeSniffer is available on the [Github wiki](https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki).
## Issues
-Bug reports and feature requests can be submitted on the [Github Issue Tracker](https://github.com/squizlabs/PHP_CodeSniffer/issues).
+Bug reports and feature requests can be submitted on the [Github Issue Tracker](https://github.com/PHPCSStandards/PHP_CodeSniffer/issues).
## Contributing
diff --git a/autoload.php b/autoload.php
index 0dcf1b4c81..7e546bb5b6 100644
--- a/autoload.php
+++ b/autoload.php
@@ -11,7 +11,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer;
diff --git a/bin/phpcbf b/bin/phpcbf
index 45b43f4326..2e86a40e62 100755
--- a/bin/phpcbf
+++ b/bin/phpcbf
@@ -5,7 +5,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
if (is_file(__DIR__.'/../autoload.php') === true) {
diff --git a/bin/phpcbf.bat b/bin/phpcbf.bat
index 5b07a7d924..82e9d561b1 100644
--- a/bin/phpcbf.bat
+++ b/bin/phpcbf.bat
@@ -3,7 +3,7 @@ REM PHP Code Beautifier and Fixer fixes violations of a defined coding standard.
REM
REM @author Greg Sherwood
REM @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
-REM @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+REM @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
if "%PHP_PEAR_PHP_BIN%" neq "" (
set PHPBIN=%PHP_PEAR_PHP_BIN%
diff --git a/bin/phpcs b/bin/phpcs
index 52d28cdf18..e8e8b02894 100755
--- a/bin/phpcs
+++ b/bin/phpcs
@@ -5,7 +5,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
if (is_file(__DIR__.'/../autoload.php') === true) {
diff --git a/bin/phpcs.bat b/bin/phpcs.bat
index 9f9be72033..7fe506cf98 100755
--- a/bin/phpcs.bat
+++ b/bin/phpcs.bat
@@ -3,7 +3,7 @@ REM PHP_CodeSniffer detects violations of a defined coding standard.
REM
REM @author Greg Sherwood
REM @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
-REM @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+REM @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
if "%PHP_PEAR_PHP_BIN%" neq "" (
set PHPBIN=%PHP_PEAR_PHP_BIN%
diff --git a/scripts/build-phar.php b/scripts/build-phar.php
index 45e44bab2e..81ee997f19 100644
--- a/scripts/build-phar.php
+++ b/scripts/build-phar.php
@@ -10,7 +10,7 @@
* @author Benjamin Pearson
* @author Greg Sherwood
* @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
diff --git a/src/Config.php b/src/Config.php
index 0320bdee87..ffad6cb8f1 100644
--- a/src/Config.php
+++ b/src/Config.php
@@ -7,7 +7,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer;
diff --git a/src/Exceptions/DeepExitException.php b/src/Exceptions/DeepExitException.php
index b1440944a6..7732c6da48 100644
--- a/src/Exceptions/DeepExitException.php
+++ b/src/Exceptions/DeepExitException.php
@@ -7,7 +7,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Exceptions;
diff --git a/src/Exceptions/RuntimeException.php b/src/Exceptions/RuntimeException.php
index 093bf13d4c..a3d590984c 100644
--- a/src/Exceptions/RuntimeException.php
+++ b/src/Exceptions/RuntimeException.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Exceptions;
diff --git a/src/Exceptions/TokenizerException.php b/src/Exceptions/TokenizerException.php
index ceba00ccda..ad25ace198 100644
--- a/src/Exceptions/TokenizerException.php
+++ b/src/Exceptions/TokenizerException.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Exceptions;
diff --git a/src/Files/DummyFile.php b/src/Files/DummyFile.php
index 601430301d..eb947fd2a9 100644
--- a/src/Files/DummyFile.php
+++ b/src/Files/DummyFile.php
@@ -9,7 +9,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Files;
diff --git a/src/Files/File.php b/src/Files/File.php
index 21cbeb2158..0945b7c3d2 100644
--- a/src/Files/File.php
+++ b/src/Files/File.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Files;
diff --git a/src/Files/FileList.php b/src/Files/FileList.php
index 66833a3ee4..bf98385a35 100644
--- a/src/Files/FileList.php
+++ b/src/Files/FileList.php
@@ -6,7 +6,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Files;
diff --git a/src/Files/LocalFile.php b/src/Files/LocalFile.php
index ca2e74ad39..c2af77c42a 100644
--- a/src/Files/LocalFile.php
+++ b/src/Files/LocalFile.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Files;
diff --git a/src/Filters/ExactMatch.php b/src/Filters/ExactMatch.php
index 13af8ff22b..38a2f05bb8 100644
--- a/src/Filters/ExactMatch.php
+++ b/src/Filters/ExactMatch.php
@@ -6,7 +6,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Filters;
diff --git a/src/Filters/Filter.php b/src/Filters/Filter.php
index a1246a2c52..c72518c660 100644
--- a/src/Filters/Filter.php
+++ b/src/Filters/Filter.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Filters;
diff --git a/src/Filters/GitModified.php b/src/Filters/GitModified.php
index 4b6ef3fc58..9bba997c24 100644
--- a/src/Filters/GitModified.php
+++ b/src/Filters/GitModified.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Filters;
diff --git a/src/Filters/GitStaged.php b/src/Filters/GitStaged.php
index fcb92c3d97..1fdbb952ca 100644
--- a/src/Filters/GitStaged.php
+++ b/src/Filters/GitStaged.php
@@ -6,7 +6,7 @@
*
* @author Juliette Reinders Folmer
* @copyright 2018 Juliette Reinders Folmer. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Filters;
diff --git a/src/Fixer.php b/src/Fixer.php
index b8dc05b16e..2ff09576a7 100644
--- a/src/Fixer.php
+++ b/src/Fixer.php
@@ -7,7 +7,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer;
diff --git a/src/Generators/Generator.php b/src/Generators/Generator.php
index 56049768b0..483cae800f 100644
--- a/src/Generators/Generator.php
+++ b/src/Generators/Generator.php
@@ -7,7 +7,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Generators;
diff --git a/src/Generators/HTML.php b/src/Generators/HTML.php
index db26468439..55acd9e172 100644
--- a/src/Generators/HTML.php
+++ b/src/Generators/HTML.php
@@ -8,7 +8,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Generators;
@@ -169,7 +169,7 @@ protected function printFooter()
$errorLevel = error_reporting(0);
echo ' '.PHP_EOL;
error_reporting($errorLevel);
diff --git a/src/Generators/Markdown.php b/src/Generators/Markdown.php
index 9756bcf140..23bed27e20 100644
--- a/src/Generators/Markdown.php
+++ b/src/Generators/Markdown.php
@@ -4,7 +4,7 @@
*
* @author Stefano Kowalke
* @copyright 2014 Arroba IT
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Generators;
@@ -67,7 +67,7 @@ protected function printFooter()
// don't have their timezone set.
error_reporting(0);
echo 'Documentation generated on '.date('r');
- echo ' by [PHP_CodeSniffer '.Config::VERSION.'](https://github.com/squizlabs/PHP_CodeSniffer)'.PHP_EOL;
+ echo ' by [PHP_CodeSniffer '.Config::VERSION.'](https://github.com/PHPCSStandards/PHP_CodeSniffer)'.PHP_EOL;
}//end printFooter()
diff --git a/src/Generators/Text.php b/src/Generators/Text.php
index ffff206aa8..7ec95ec9c7 100644
--- a/src/Generators/Text.php
+++ b/src/Generators/Text.php
@@ -6,7 +6,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Generators;
diff --git a/src/Reporter.php b/src/Reporter.php
index e89a20edff..3e3da32110 100644
--- a/src/Reporter.php
+++ b/src/Reporter.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer;
diff --git a/src/Reports/Cbf.php b/src/Reports/Cbf.php
index c85353d988..b84f69f6cc 100644
--- a/src/Reports/Cbf.php
+++ b/src/Reports/Cbf.php
@@ -8,7 +8,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Checkstyle.php b/src/Reports/Checkstyle.php
index 313e086710..dc1f6cc7bf 100644
--- a/src/Reports/Checkstyle.php
+++ b/src/Reports/Checkstyle.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Code.php b/src/Reports/Code.php
index 4a7a27af82..2382705817 100644
--- a/src/Reports/Code.php
+++ b/src/Reports/Code.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Csv.php b/src/Reports/Csv.php
index 1f02edbd85..aef7d7e375 100644
--- a/src/Reports/Csv.php
+++ b/src/Reports/Csv.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Diff.php b/src/Reports/Diff.php
index 68af0a0261..03f7bf20d5 100644
--- a/src/Reports/Diff.php
+++ b/src/Reports/Diff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Emacs.php b/src/Reports/Emacs.php
index cae9d22d85..3f0036576a 100644
--- a/src/Reports/Emacs.php
+++ b/src/Reports/Emacs.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Full.php b/src/Reports/Full.php
index 5f6bcde80a..f6db5833be 100644
--- a/src/Reports/Full.php
+++ b/src/Reports/Full.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Gitblame.php b/src/Reports/Gitblame.php
index 0919e0e0ba..3beb34524a 100644
--- a/src/Reports/Gitblame.php
+++ b/src/Reports/Gitblame.php
@@ -5,7 +5,7 @@
* @author Ben Selby
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Hgblame.php b/src/Reports/Hgblame.php
index f88a06836b..3b4bbcfa1b 100644
--- a/src/Reports/Hgblame.php
+++ b/src/Reports/Hgblame.php
@@ -5,7 +5,7 @@
* @author Ben Selby
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Info.php b/src/Reports/Info.php
index fa0698efdf..e263199be9 100644
--- a/src/Reports/Info.php
+++ b/src/Reports/Info.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Json.php b/src/Reports/Json.php
index f7aedb30a5..0b9ad34fa1 100644
--- a/src/Reports/Json.php
+++ b/src/Reports/Json.php
@@ -5,7 +5,7 @@
* @author Jeffrey Fisher
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Junit.php b/src/Reports/Junit.php
index 0b59604ae0..40145a7178 100644
--- a/src/Reports/Junit.php
+++ b/src/Reports/Junit.php
@@ -5,7 +5,7 @@
* @author Oleg Lobach
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Notifysend.php b/src/Reports/Notifysend.php
index 71aed108ed..7f5a7e4181 100644
--- a/src/Reports/Notifysend.php
+++ b/src/Reports/Notifysend.php
@@ -11,7 +11,7 @@
* @author Greg Sherwood
* @copyright 2012-2014 Christian Weiske
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Report.php b/src/Reports/Report.php
index fd60185e94..eec5eb1d0b 100644
--- a/src/Reports/Report.php
+++ b/src/Reports/Report.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Source.php b/src/Reports/Source.php
index 44f0d8748e..6aa891a4bd 100644
--- a/src/Reports/Source.php
+++ b/src/Reports/Source.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Summary.php b/src/Reports/Summary.php
index cd5ca69476..d2927a1c3f 100644
--- a/src/Reports/Summary.php
+++ b/src/Reports/Summary.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Svnblame.php b/src/Reports/Svnblame.php
index a7f65e154b..b44e83d627 100644
--- a/src/Reports/Svnblame.php
+++ b/src/Reports/Svnblame.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/VersionControl.php b/src/Reports/VersionControl.php
index e8e399a7dd..df1cd642db 100644
--- a/src/Reports/VersionControl.php
+++ b/src/Reports/VersionControl.php
@@ -5,7 +5,7 @@
* @author Ben Selby
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Reports/Xml.php b/src/Reports/Xml.php
index c748dca726..dc25bba3f0 100644
--- a/src/Reports/Xml.php
+++ b/src/Reports/Xml.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Reports;
diff --git a/src/Ruleset.php b/src/Ruleset.php
index 5ba0d180fc..dbfa6ab9eb 100644
--- a/src/Ruleset.php
+++ b/src/Ruleset.php
@@ -6,7 +6,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer;
diff --git a/src/Runner.php b/src/Runner.php
index 2f21edf482..0f57243c23 100644
--- a/src/Runner.php
+++ b/src/Runner.php
@@ -7,7 +7,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer;
diff --git a/src/Sniffs/AbstractArraySniff.php b/src/Sniffs/AbstractArraySniff.php
index efe9969d8d..45e1091883 100644
--- a/src/Sniffs/AbstractArraySniff.php
+++ b/src/Sniffs/AbstractArraySniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Sniffs;
diff --git a/src/Sniffs/AbstractPatternSniff.php b/src/Sniffs/AbstractPatternSniff.php
index 66bc2f5247..8dde80414a 100644
--- a/src/Sniffs/AbstractPatternSniff.php
+++ b/src/Sniffs/AbstractPatternSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Sniffs;
diff --git a/src/Sniffs/AbstractScopeSniff.php b/src/Sniffs/AbstractScopeSniff.php
index 70d8720a1e..f2e101dcc3 100644
--- a/src/Sniffs/AbstractScopeSniff.php
+++ b/src/Sniffs/AbstractScopeSniff.php
@@ -21,7 +21,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Sniffs;
diff --git a/src/Sniffs/AbstractVariableSniff.php b/src/Sniffs/AbstractVariableSniff.php
index 5dc8ba5568..6493d5701a 100644
--- a/src/Sniffs/AbstractVariableSniff.php
+++ b/src/Sniffs/AbstractVariableSniff.php
@@ -10,7 +10,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Sniffs;
diff --git a/src/Sniffs/Sniff.php b/src/Sniffs/Sniff.php
index 3f0fb6a1cf..92acbc4a05 100644
--- a/src/Sniffs/Sniff.php
+++ b/src/Sniffs/Sniff.php
@@ -9,7 +9,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Sniffs;
diff --git a/src/Standards/Generic/Sniffs/Arrays/ArrayIndentSniff.php b/src/Standards/Generic/Sniffs/Arrays/ArrayIndentSniff.php
index adb74ec8cb..9bff5c6354 100644
--- a/src/Standards/Generic/Sniffs/Arrays/ArrayIndentSniff.php
+++ b/src/Standards/Generic/Sniffs/Arrays/ArrayIndentSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Arrays;
diff --git a/src/Standards/Generic/Sniffs/Arrays/DisallowLongArraySyntaxSniff.php b/src/Standards/Generic/Sniffs/Arrays/DisallowLongArraySyntaxSniff.php
index bf7f3ed1c0..5c83895294 100644
--- a/src/Standards/Generic/Sniffs/Arrays/DisallowLongArraySyntaxSniff.php
+++ b/src/Standards/Generic/Sniffs/Arrays/DisallowLongArraySyntaxSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Arrays;
diff --git a/src/Standards/Generic/Sniffs/Arrays/DisallowShortArraySyntaxSniff.php b/src/Standards/Generic/Sniffs/Arrays/DisallowShortArraySyntaxSniff.php
index 2ba42d673a..ea435321fc 100644
--- a/src/Standards/Generic/Sniffs/Arrays/DisallowShortArraySyntaxSniff.php
+++ b/src/Standards/Generic/Sniffs/Arrays/DisallowShortArraySyntaxSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Arrays;
diff --git a/src/Standards/Generic/Sniffs/Classes/DuplicateClassNameSniff.php b/src/Standards/Generic/Sniffs/Classes/DuplicateClassNameSniff.php
index 3243f8b7dc..c14e7ecad3 100644
--- a/src/Standards/Generic/Sniffs/Classes/DuplicateClassNameSniff.php
+++ b/src/Standards/Generic/Sniffs/Classes/DuplicateClassNameSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Classes;
diff --git a/src/Standards/Generic/Sniffs/Classes/OpeningBraceSameLineSniff.php b/src/Standards/Generic/Sniffs/Classes/OpeningBraceSameLineSniff.php
index dfd925f918..a00443b3fa 100644
--- a/src/Standards/Generic/Sniffs/Classes/OpeningBraceSameLineSniff.php
+++ b/src/Standards/Generic/Sniffs/Classes/OpeningBraceSameLineSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Classes;
diff --git a/src/Standards/Generic/Sniffs/CodeAnalysis/AssignmentInConditionSniff.php b/src/Standards/Generic/Sniffs/CodeAnalysis/AssignmentInConditionSniff.php
index 8788a912ea..cfde25f59d 100644
--- a/src/Standards/Generic/Sniffs/CodeAnalysis/AssignmentInConditionSniff.php
+++ b/src/Standards/Generic/Sniffs/CodeAnalysis/AssignmentInConditionSniff.php
@@ -8,7 +8,7 @@
*
* @author Juliette Reinders Folmer
* @copyright 2017 Juliette Reinders Folmer. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\CodeAnalysis;
diff --git a/src/Standards/Generic/Sniffs/CodeAnalysis/EmptyPHPStatementSniff.php b/src/Standards/Generic/Sniffs/CodeAnalysis/EmptyPHPStatementSniff.php
index 1c9e400019..450df7a270 100644
--- a/src/Standards/Generic/Sniffs/CodeAnalysis/EmptyPHPStatementSniff.php
+++ b/src/Standards/Generic/Sniffs/CodeAnalysis/EmptyPHPStatementSniff.php
@@ -7,7 +7,7 @@
*
* @author Juliette Reinders Folmer
* @copyright 2017 Juliette Reinders Folmer. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\CodeAnalysis;
diff --git a/src/Standards/Generic/Sniffs/CodeAnalysis/EmptyStatementSniff.php b/src/Standards/Generic/Sniffs/CodeAnalysis/EmptyStatementSniff.php
index 574bb0ba5a..2e5b7da33b 100644
--- a/src/Standards/Generic/Sniffs/CodeAnalysis/EmptyStatementSniff.php
+++ b/src/Standards/Generic/Sniffs/CodeAnalysis/EmptyStatementSniff.php
@@ -18,7 +18,7 @@
* @author Manuel Pichler
* @author Greg Sherwood
* @copyright 2007-2014 Manuel Pichler. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\CodeAnalysis;
diff --git a/src/Standards/Generic/Sniffs/CodeAnalysis/ForLoopShouldBeWhileLoopSniff.php b/src/Standards/Generic/Sniffs/CodeAnalysis/ForLoopShouldBeWhileLoopSniff.php
index f583e93891..5835f6ce5d 100644
--- a/src/Standards/Generic/Sniffs/CodeAnalysis/ForLoopShouldBeWhileLoopSniff.php
+++ b/src/Standards/Generic/Sniffs/CodeAnalysis/ForLoopShouldBeWhileLoopSniff.php
@@ -17,7 +17,7 @@
*
* @author Manuel Pichler
* @copyright 2007-2014 Manuel Pichler. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\CodeAnalysis;
diff --git a/src/Standards/Generic/Sniffs/CodeAnalysis/ForLoopWithTestFunctionCallSniff.php b/src/Standards/Generic/Sniffs/CodeAnalysis/ForLoopWithTestFunctionCallSniff.php
index 62a07b26af..bbe02a3404 100644
--- a/src/Standards/Generic/Sniffs/CodeAnalysis/ForLoopWithTestFunctionCallSniff.php
+++ b/src/Standards/Generic/Sniffs/CodeAnalysis/ForLoopWithTestFunctionCallSniff.php
@@ -21,7 +21,7 @@
* @author Greg Sherwood
* @author Manuel Pichler
* @copyright 2007-2014 Manuel Pichler. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\CodeAnalysis;
diff --git a/src/Standards/Generic/Sniffs/CodeAnalysis/JumbledIncrementerSniff.php b/src/Standards/Generic/Sniffs/CodeAnalysis/JumbledIncrementerSniff.php
index 364658db65..d4af5776dc 100644
--- a/src/Standards/Generic/Sniffs/CodeAnalysis/JumbledIncrementerSniff.php
+++ b/src/Standards/Generic/Sniffs/CodeAnalysis/JumbledIncrementerSniff.php
@@ -24,7 +24,7 @@
*
* @author Manuel Pichler
* @copyright 2007-2014 Manuel Pichler. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\CodeAnalysis;
diff --git a/src/Standards/Generic/Sniffs/CodeAnalysis/UnconditionalIfStatementSniff.php b/src/Standards/Generic/Sniffs/CodeAnalysis/UnconditionalIfStatementSniff.php
index cc9958c586..978fba73a6 100644
--- a/src/Standards/Generic/Sniffs/CodeAnalysis/UnconditionalIfStatementSniff.php
+++ b/src/Standards/Generic/Sniffs/CodeAnalysis/UnconditionalIfStatementSniff.php
@@ -21,7 +21,7 @@
*
* @author Manuel Pichler
* @copyright 2007-2014 Manuel Pichler. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\CodeAnalysis;
diff --git a/src/Standards/Generic/Sniffs/CodeAnalysis/UnnecessaryFinalModifierSniff.php b/src/Standards/Generic/Sniffs/CodeAnalysis/UnnecessaryFinalModifierSniff.php
index 02ae2e7a32..d66abc2729 100644
--- a/src/Standards/Generic/Sniffs/CodeAnalysis/UnnecessaryFinalModifierSniff.php
+++ b/src/Standards/Generic/Sniffs/CodeAnalysis/UnnecessaryFinalModifierSniff.php
@@ -17,7 +17,7 @@
*
* @author Manuel Pichler
* @copyright 2007-2014 Manuel Pichler. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\CodeAnalysis;
diff --git a/src/Standards/Generic/Sniffs/CodeAnalysis/UnusedFunctionParameterSniff.php b/src/Standards/Generic/Sniffs/CodeAnalysis/UnusedFunctionParameterSniff.php
index 58aa29fe85..ac6e599a03 100644
--- a/src/Standards/Generic/Sniffs/CodeAnalysis/UnusedFunctionParameterSniff.php
+++ b/src/Standards/Generic/Sniffs/CodeAnalysis/UnusedFunctionParameterSniff.php
@@ -11,7 +11,7 @@
* @author Manuel Pichler
* @author Greg Sherwood
* @copyright 2007-2014 Manuel Pichler. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\CodeAnalysis;
diff --git a/src/Standards/Generic/Sniffs/CodeAnalysis/UselessOverridingMethodSniff.php b/src/Standards/Generic/Sniffs/CodeAnalysis/UselessOverridingMethodSniff.php
index fded929534..ba3553e1f6 100644
--- a/src/Standards/Generic/Sniffs/CodeAnalysis/UselessOverridingMethodSniff.php
+++ b/src/Standards/Generic/Sniffs/CodeAnalysis/UselessOverridingMethodSniff.php
@@ -16,7 +16,7 @@
*
* @author Manuel Pichler
* @copyright 2007-2014 Manuel Pichler. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\CodeAnalysis;
diff --git a/src/Standards/Generic/Sniffs/Commenting/DocCommentSniff.php b/src/Standards/Generic/Sniffs/Commenting/DocCommentSniff.php
index 545319be5e..1e96e64b75 100644
--- a/src/Standards/Generic/Sniffs/Commenting/DocCommentSniff.php
+++ b/src/Standards/Generic/Sniffs/Commenting/DocCommentSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Commenting;
diff --git a/src/Standards/Generic/Sniffs/Commenting/FixmeSniff.php b/src/Standards/Generic/Sniffs/Commenting/FixmeSniff.php
index 84385221ec..240c60edb6 100644
--- a/src/Standards/Generic/Sniffs/Commenting/FixmeSniff.php
+++ b/src/Standards/Generic/Sniffs/Commenting/FixmeSniff.php
@@ -5,7 +5,7 @@
* @author Greg Sherwood
* @author Sam Graham
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Commenting;
diff --git a/src/Standards/Generic/Sniffs/Commenting/TodoSniff.php b/src/Standards/Generic/Sniffs/Commenting/TodoSniff.php
index 6396804610..9b5b34ab6f 100644
--- a/src/Standards/Generic/Sniffs/Commenting/TodoSniff.php
+++ b/src/Standards/Generic/Sniffs/Commenting/TodoSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Commenting;
diff --git a/src/Standards/Generic/Sniffs/ControlStructures/DisallowYodaConditionsSniff.php b/src/Standards/Generic/Sniffs/ControlStructures/DisallowYodaConditionsSniff.php
index f760fa1c60..7a705747dc 100644
--- a/src/Standards/Generic/Sniffs/ControlStructures/DisallowYodaConditionsSniff.php
+++ b/src/Standards/Generic/Sniffs/ControlStructures/DisallowYodaConditionsSniff.php
@@ -5,7 +5,7 @@
* @author Mponos George
* @author Mark Scherer
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\ControlStructures;
diff --git a/src/Standards/Generic/Sniffs/ControlStructures/InlineControlStructureSniff.php b/src/Standards/Generic/Sniffs/ControlStructures/InlineControlStructureSniff.php
index a67a6a798c..5ae358ff6a 100644
--- a/src/Standards/Generic/Sniffs/ControlStructures/InlineControlStructureSniff.php
+++ b/src/Standards/Generic/Sniffs/ControlStructures/InlineControlStructureSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\ControlStructures;
diff --git a/src/Standards/Generic/Sniffs/Debug/CSSLintSniff.php b/src/Standards/Generic/Sniffs/Debug/CSSLintSniff.php
index 81284787a2..9baad8c97c 100644
--- a/src/Standards/Generic/Sniffs/Debug/CSSLintSniff.php
+++ b/src/Standards/Generic/Sniffs/Debug/CSSLintSniff.php
@@ -4,7 +4,7 @@
*
* @author Roman Levishchenko
* @copyright 2013-2014 Roman Levishchenko
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Debug;
diff --git a/src/Standards/Generic/Sniffs/Debug/ClosureLinterSniff.php b/src/Standards/Generic/Sniffs/Debug/ClosureLinterSniff.php
index 19204718b0..926fec1555 100644
--- a/src/Standards/Generic/Sniffs/Debug/ClosureLinterSniff.php
+++ b/src/Standards/Generic/Sniffs/Debug/ClosureLinterSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Debug;
diff --git a/src/Standards/Generic/Sniffs/Debug/ESLintSniff.php b/src/Standards/Generic/Sniffs/Debug/ESLintSniff.php
index d11d347050..cf576383f6 100644
--- a/src/Standards/Generic/Sniffs/Debug/ESLintSniff.php
+++ b/src/Standards/Generic/Sniffs/Debug/ESLintSniff.php
@@ -4,7 +4,7 @@
*
* @author Ryan McCue
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Debug;
diff --git a/src/Standards/Generic/Sniffs/Debug/JSHintSniff.php b/src/Standards/Generic/Sniffs/Debug/JSHintSniff.php
index 738ab67ebe..aa3e6bd7f6 100644
--- a/src/Standards/Generic/Sniffs/Debug/JSHintSniff.php
+++ b/src/Standards/Generic/Sniffs/Debug/JSHintSniff.php
@@ -5,7 +5,7 @@
* @author Greg Sherwood
* @author Alexander Wei§
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Debug;
diff --git a/src/Standards/Generic/Sniffs/Files/ByteOrderMarkSniff.php b/src/Standards/Generic/Sniffs/Files/ByteOrderMarkSniff.php
index cee8ecc5f2..23249156bb 100644
--- a/src/Standards/Generic/Sniffs/Files/ByteOrderMarkSniff.php
+++ b/src/Standards/Generic/Sniffs/Files/ByteOrderMarkSniff.php
@@ -5,7 +5,7 @@
* @author Piotr Karas
* @author Greg Sherwood
* @copyright 2010-2014 mediaSELF Sp. z o.o.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Files;
diff --git a/src/Standards/Generic/Sniffs/Files/EndFileNewlineSniff.php b/src/Standards/Generic/Sniffs/Files/EndFileNewlineSniff.php
index d5375dc5c0..ffca4227a3 100644
--- a/src/Standards/Generic/Sniffs/Files/EndFileNewlineSniff.php
+++ b/src/Standards/Generic/Sniffs/Files/EndFileNewlineSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Files;
diff --git a/src/Standards/Generic/Sniffs/Files/EndFileNoNewlineSniff.php b/src/Standards/Generic/Sniffs/Files/EndFileNoNewlineSniff.php
index 41c9c74991..2e82176b0f 100644
--- a/src/Standards/Generic/Sniffs/Files/EndFileNoNewlineSniff.php
+++ b/src/Standards/Generic/Sniffs/Files/EndFileNoNewlineSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Files;
diff --git a/src/Standards/Generic/Sniffs/Files/ExecutableFileSniff.php b/src/Standards/Generic/Sniffs/Files/ExecutableFileSniff.php
index e1213d5f64..7db30618eb 100644
--- a/src/Standards/Generic/Sniffs/Files/ExecutableFileSniff.php
+++ b/src/Standards/Generic/Sniffs/Files/ExecutableFileSniff.php
@@ -4,7 +4,7 @@
*
* @author Matthew Peveler
* @copyright 2019 Matthew Peveler
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Files;
diff --git a/src/Standards/Generic/Sniffs/Files/InlineHTMLSniff.php b/src/Standards/Generic/Sniffs/Files/InlineHTMLSniff.php
index eb01da87b3..99e2e91f4b 100644
--- a/src/Standards/Generic/Sniffs/Files/InlineHTMLSniff.php
+++ b/src/Standards/Generic/Sniffs/Files/InlineHTMLSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Files;
diff --git a/src/Standards/Generic/Sniffs/Files/LineEndingsSniff.php b/src/Standards/Generic/Sniffs/Files/LineEndingsSniff.php
index 845e1bcfc4..2a8647e44f 100644
--- a/src/Standards/Generic/Sniffs/Files/LineEndingsSniff.php
+++ b/src/Standards/Generic/Sniffs/Files/LineEndingsSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Files;
diff --git a/src/Standards/Generic/Sniffs/Files/LineLengthSniff.php b/src/Standards/Generic/Sniffs/Files/LineLengthSniff.php
index 5aa45ea0e1..56fbe858b2 100644
--- a/src/Standards/Generic/Sniffs/Files/LineLengthSniff.php
+++ b/src/Standards/Generic/Sniffs/Files/LineLengthSniff.php
@@ -8,7 +8,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Files;
diff --git a/src/Standards/Generic/Sniffs/Files/LowercasedFilenameSniff.php b/src/Standards/Generic/Sniffs/Files/LowercasedFilenameSniff.php
index a9fd4c5d44..c6ab14ce21 100644
--- a/src/Standards/Generic/Sniffs/Files/LowercasedFilenameSniff.php
+++ b/src/Standards/Generic/Sniffs/Files/LowercasedFilenameSniff.php
@@ -4,7 +4,7 @@
*
* @author Andy Grunwald
* @copyright 2010-2014 Andy Grunwald
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Files;
diff --git a/src/Standards/Generic/Sniffs/Files/OneClassPerFileSniff.php b/src/Standards/Generic/Sniffs/Files/OneClassPerFileSniff.php
index 52d5d84c74..9eea7278df 100644
--- a/src/Standards/Generic/Sniffs/Files/OneClassPerFileSniff.php
+++ b/src/Standards/Generic/Sniffs/Files/OneClassPerFileSniff.php
@@ -4,7 +4,7 @@
*
* @author Andy Grunwald
* @copyright 2010-2014 Andy Grunwald
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Files;
diff --git a/src/Standards/Generic/Sniffs/Files/OneInterfacePerFileSniff.php b/src/Standards/Generic/Sniffs/Files/OneInterfacePerFileSniff.php
index 9a6f5bccd5..71b6894a38 100644
--- a/src/Standards/Generic/Sniffs/Files/OneInterfacePerFileSniff.php
+++ b/src/Standards/Generic/Sniffs/Files/OneInterfacePerFileSniff.php
@@ -4,7 +4,7 @@
*
* @author Andy Grunwald
* @copyright 2010-2014 Andy Grunwald
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Files;
diff --git a/src/Standards/Generic/Sniffs/Files/OneObjectStructurePerFileSniff.php b/src/Standards/Generic/Sniffs/Files/OneObjectStructurePerFileSniff.php
index 4d417e069e..d94a32db17 100644
--- a/src/Standards/Generic/Sniffs/Files/OneObjectStructurePerFileSniff.php
+++ b/src/Standards/Generic/Sniffs/Files/OneObjectStructurePerFileSniff.php
@@ -4,7 +4,7 @@
*
* @author Mponos George
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Files;
diff --git a/src/Standards/Generic/Sniffs/Files/OneTraitPerFileSniff.php b/src/Standards/Generic/Sniffs/Files/OneTraitPerFileSniff.php
index 7ae523f70e..0be3734148 100644
--- a/src/Standards/Generic/Sniffs/Files/OneTraitPerFileSniff.php
+++ b/src/Standards/Generic/Sniffs/Files/OneTraitPerFileSniff.php
@@ -4,7 +4,7 @@
*
* @author Alexander Obuhovich
* @copyright 2010-2014 Alexander Obuhovich
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Files;
diff --git a/src/Standards/Generic/Sniffs/Formatting/DisallowMultipleStatementsSniff.php b/src/Standards/Generic/Sniffs/Formatting/DisallowMultipleStatementsSniff.php
index 6f9ff9f917..5466938d1c 100644
--- a/src/Standards/Generic/Sniffs/Formatting/DisallowMultipleStatementsSniff.php
+++ b/src/Standards/Generic/Sniffs/Formatting/DisallowMultipleStatementsSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Formatting;
diff --git a/src/Standards/Generic/Sniffs/Formatting/MultipleStatementAlignmentSniff.php b/src/Standards/Generic/Sniffs/Formatting/MultipleStatementAlignmentSniff.php
index 802e594485..68ddf53ff7 100644
--- a/src/Standards/Generic/Sniffs/Formatting/MultipleStatementAlignmentSniff.php
+++ b/src/Standards/Generic/Sniffs/Formatting/MultipleStatementAlignmentSniff.php
@@ -7,7 +7,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Formatting;
diff --git a/src/Standards/Generic/Sniffs/Formatting/NoSpaceAfterCastSniff.php b/src/Standards/Generic/Sniffs/Formatting/NoSpaceAfterCastSniff.php
index f6a37dafd9..e7d294de6f 100644
--- a/src/Standards/Generic/Sniffs/Formatting/NoSpaceAfterCastSniff.php
+++ b/src/Standards/Generic/Sniffs/Formatting/NoSpaceAfterCastSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*
* @deprecated 3.4.0 Use the Generic.Formatting.SpaceAfterCast sniff with
* the $spacing property set to 0 instead.
diff --git a/src/Standards/Generic/Sniffs/Formatting/SpaceAfterCastSniff.php b/src/Standards/Generic/Sniffs/Formatting/SpaceAfterCastSniff.php
index f19489e8e5..36eff864ac 100644
--- a/src/Standards/Generic/Sniffs/Formatting/SpaceAfterCastSniff.php
+++ b/src/Standards/Generic/Sniffs/Formatting/SpaceAfterCastSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Formatting;
diff --git a/src/Standards/Generic/Sniffs/Formatting/SpaceAfterNotSniff.php b/src/Standards/Generic/Sniffs/Formatting/SpaceAfterNotSniff.php
index b74ca80edc..1ff25bdade 100644
--- a/src/Standards/Generic/Sniffs/Formatting/SpaceAfterNotSniff.php
+++ b/src/Standards/Generic/Sniffs/Formatting/SpaceAfterNotSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Formatting;
diff --git a/src/Standards/Generic/Sniffs/Formatting/SpaceBeforeCastSniff.php b/src/Standards/Generic/Sniffs/Formatting/SpaceBeforeCastSniff.php
index a4f85aeb63..e4d9338401 100644
--- a/src/Standards/Generic/Sniffs/Formatting/SpaceBeforeCastSniff.php
+++ b/src/Standards/Generic/Sniffs/Formatting/SpaceBeforeCastSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Formatting;
diff --git a/src/Standards/Generic/Sniffs/Functions/CallTimePassByReferenceSniff.php b/src/Standards/Generic/Sniffs/Functions/CallTimePassByReferenceSniff.php
index 425748cee9..33f0c34e65 100644
--- a/src/Standards/Generic/Sniffs/Functions/CallTimePassByReferenceSniff.php
+++ b/src/Standards/Generic/Sniffs/Functions/CallTimePassByReferenceSniff.php
@@ -4,7 +4,7 @@
*
* @author Florian Grandel
* @copyright 2009-2014 Florian Grandel
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Functions;
diff --git a/src/Standards/Generic/Sniffs/Functions/FunctionCallArgumentSpacingSniff.php b/src/Standards/Generic/Sniffs/Functions/FunctionCallArgumentSpacingSniff.php
index 39fdae9526..2b33eeac58 100644
--- a/src/Standards/Generic/Sniffs/Functions/FunctionCallArgumentSpacingSniff.php
+++ b/src/Standards/Generic/Sniffs/Functions/FunctionCallArgumentSpacingSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Functions;
diff --git a/src/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceBsdAllmanSniff.php b/src/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceBsdAllmanSniff.php
index ff19526a9b..de2c083175 100644
--- a/src/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceBsdAllmanSniff.php
+++ b/src/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceBsdAllmanSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Functions;
diff --git a/src/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceKernighanRitchieSniff.php b/src/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceKernighanRitchieSniff.php
index 62eafc1203..7034550e5c 100644
--- a/src/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceKernighanRitchieSniff.php
+++ b/src/Standards/Generic/Sniffs/Functions/OpeningFunctionBraceKernighanRitchieSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Functions;
diff --git a/src/Standards/Generic/Sniffs/Metrics/CyclomaticComplexitySniff.php b/src/Standards/Generic/Sniffs/Metrics/CyclomaticComplexitySniff.php
index 9bd0dff3de..f68666f946 100644
--- a/src/Standards/Generic/Sniffs/Metrics/CyclomaticComplexitySniff.php
+++ b/src/Standards/Generic/Sniffs/Metrics/CyclomaticComplexitySniff.php
@@ -9,7 +9,7 @@
* @author Johann-Peter Hartmann
* @author Greg Sherwood
* @copyright 2007-2014 Mayflower GmbH
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Metrics;
diff --git a/src/Standards/Generic/Sniffs/Metrics/NestingLevelSniff.php b/src/Standards/Generic/Sniffs/Metrics/NestingLevelSniff.php
index d001dedad1..35b5b29a5f 100644
--- a/src/Standards/Generic/Sniffs/Metrics/NestingLevelSniff.php
+++ b/src/Standards/Generic/Sniffs/Metrics/NestingLevelSniff.php
@@ -5,7 +5,7 @@
* @author Johann-Peter Hartmann
* @author Greg Sherwood
* @copyright 2007-2014 Mayflower GmbH
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Metrics;
diff --git a/src/Standards/Generic/Sniffs/NamingConventions/AbstractClassNamePrefixSniff.php b/src/Standards/Generic/Sniffs/NamingConventions/AbstractClassNamePrefixSniff.php
index 3e3af830d3..8f3e5570e6 100644
--- a/src/Standards/Generic/Sniffs/NamingConventions/AbstractClassNamePrefixSniff.php
+++ b/src/Standards/Generic/Sniffs/NamingConventions/AbstractClassNamePrefixSniff.php
@@ -3,7 +3,7 @@
* Checks that abstract classes are prefixed by Abstract.
*
* @author Anna Borzenko
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\NamingConventions;
diff --git a/src/Standards/Generic/Sniffs/NamingConventions/CamelCapsFunctionNameSniff.php b/src/Standards/Generic/Sniffs/NamingConventions/CamelCapsFunctionNameSniff.php
index b45112034a..ec1cfd0029 100644
--- a/src/Standards/Generic/Sniffs/NamingConventions/CamelCapsFunctionNameSniff.php
+++ b/src/Standards/Generic/Sniffs/NamingConventions/CamelCapsFunctionNameSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\NamingConventions;
diff --git a/src/Standards/Generic/Sniffs/NamingConventions/ConstructorNameSniff.php b/src/Standards/Generic/Sniffs/NamingConventions/ConstructorNameSniff.php
index a41960637c..75fbd2264e 100644
--- a/src/Standards/Generic/Sniffs/NamingConventions/ConstructorNameSniff.php
+++ b/src/Standards/Generic/Sniffs/NamingConventions/ConstructorNameSniff.php
@@ -8,7 +8,7 @@
* @author Greg Sherwood
* @author Leif Wickland
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\NamingConventions;
diff --git a/src/Standards/Generic/Sniffs/NamingConventions/InterfaceNameSuffixSniff.php b/src/Standards/Generic/Sniffs/NamingConventions/InterfaceNameSuffixSniff.php
index c5dc34d489..2e69aea532 100644
--- a/src/Standards/Generic/Sniffs/NamingConventions/InterfaceNameSuffixSniff.php
+++ b/src/Standards/Generic/Sniffs/NamingConventions/InterfaceNameSuffixSniff.php
@@ -3,7 +3,7 @@
* Checks that interfaces are suffixed by Interface.
*
* @author Anna Borzenko
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\NamingConventions;
diff --git a/src/Standards/Generic/Sniffs/NamingConventions/TraitNameSuffixSniff.php b/src/Standards/Generic/Sniffs/NamingConventions/TraitNameSuffixSniff.php
index 4e3b211dff..81a96b7932 100644
--- a/src/Standards/Generic/Sniffs/NamingConventions/TraitNameSuffixSniff.php
+++ b/src/Standards/Generic/Sniffs/NamingConventions/TraitNameSuffixSniff.php
@@ -3,7 +3,7 @@
* Checks that traits are suffixed by Trait.
*
* @author Anna Borzenko
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\NamingConventions;
diff --git a/src/Standards/Generic/Sniffs/NamingConventions/UpperCaseConstantNameSniff.php b/src/Standards/Generic/Sniffs/NamingConventions/UpperCaseConstantNameSniff.php
index db50eb56bb..4f4ae40e17 100644
--- a/src/Standards/Generic/Sniffs/NamingConventions/UpperCaseConstantNameSniff.php
+++ b/src/Standards/Generic/Sniffs/NamingConventions/UpperCaseConstantNameSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\NamingConventions;
diff --git a/src/Standards/Generic/Sniffs/PHP/BacktickOperatorSniff.php b/src/Standards/Generic/Sniffs/PHP/BacktickOperatorSniff.php
index d455845b57..ce9bee3101 100644
--- a/src/Standards/Generic/Sniffs/PHP/BacktickOperatorSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/BacktickOperatorSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/PHP/CharacterBeforePHPOpeningTagSniff.php b/src/Standards/Generic/Sniffs/PHP/CharacterBeforePHPOpeningTagSniff.php
index f52180dd35..af9cb9b29f 100644
--- a/src/Standards/Generic/Sniffs/PHP/CharacterBeforePHPOpeningTagSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/CharacterBeforePHPOpeningTagSniff.php
@@ -4,7 +4,7 @@
*
* @author Andy Grunwald
* @copyright 2010-2014 Andy Grunwald
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/PHP/ClosingPHPTagSniff.php b/src/Standards/Generic/Sniffs/PHP/ClosingPHPTagSniff.php
index d03bf8abe1..b8ed0a0aaf 100644
--- a/src/Standards/Generic/Sniffs/PHP/ClosingPHPTagSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/ClosingPHPTagSniff.php
@@ -4,7 +4,7 @@
*
* @author Stefano Kowalke
* @copyright 2010-2014 Stefano Kowalke
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/PHP/DeprecatedFunctionsSniff.php b/src/Standards/Generic/Sniffs/PHP/DeprecatedFunctionsSniff.php
index 42eaa40f4e..83f38898ce 100644
--- a/src/Standards/Generic/Sniffs/PHP/DeprecatedFunctionsSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/DeprecatedFunctionsSniff.php
@@ -5,7 +5,7 @@
* @author Sebastian Bergmann
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/PHP/DisallowAlternativePHPTagsSniff.php b/src/Standards/Generic/Sniffs/PHP/DisallowAlternativePHPTagsSniff.php
index 433750adfd..8451f80a6e 100644
--- a/src/Standards/Generic/Sniffs/PHP/DisallowAlternativePHPTagsSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/DisallowAlternativePHPTagsSniff.php
@@ -6,7 +6,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/PHP/DisallowRequestSuperglobalSniff.php b/src/Standards/Generic/Sniffs/PHP/DisallowRequestSuperglobalSniff.php
index 1c2b1aee93..913e16f9b8 100644
--- a/src/Standards/Generic/Sniffs/PHP/DisallowRequestSuperglobalSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/DisallowRequestSuperglobalSniff.php
@@ -4,7 +4,7 @@
*
* @author Jeantwan Teuma
* @copyright 2006-2019 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/PHP/DisallowShortOpenTagSniff.php b/src/Standards/Generic/Sniffs/PHP/DisallowShortOpenTagSniff.php
index 3f3fdbe62b..433ef5cf7f 100644
--- a/src/Standards/Generic/Sniffs/PHP/DisallowShortOpenTagSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/DisallowShortOpenTagSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/PHP/DiscourageGotoSniff.php b/src/Standards/Generic/Sniffs/PHP/DiscourageGotoSniff.php
index 6389846d8a..1a552ee722 100644
--- a/src/Standards/Generic/Sniffs/PHP/DiscourageGotoSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/DiscourageGotoSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2017 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/PHP/ForbiddenFunctionsSniff.php b/src/Standards/Generic/Sniffs/PHP/ForbiddenFunctionsSniff.php
index 8717189f0e..9b21db15db 100644
--- a/src/Standards/Generic/Sniffs/PHP/ForbiddenFunctionsSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/ForbiddenFunctionsSniff.php
@@ -7,7 +7,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/PHP/LowerCaseConstantSniff.php b/src/Standards/Generic/Sniffs/PHP/LowerCaseConstantSniff.php
index 4376daa9dd..34c825fbff 100644
--- a/src/Standards/Generic/Sniffs/PHP/LowerCaseConstantSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/LowerCaseConstantSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/PHP/LowerCaseKeywordSniff.php b/src/Standards/Generic/Sniffs/PHP/LowerCaseKeywordSniff.php
index e6b4917834..542fea5d8b 100644
--- a/src/Standards/Generic/Sniffs/PHP/LowerCaseKeywordSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/LowerCaseKeywordSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/PHP/LowerCaseTypeSniff.php b/src/Standards/Generic/Sniffs/PHP/LowerCaseTypeSniff.php
index 4d463f28fb..29cfbc7e2b 100644
--- a/src/Standards/Generic/Sniffs/PHP/LowerCaseTypeSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/LowerCaseTypeSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/PHP/NoSilencedErrorsSniff.php b/src/Standards/Generic/Sniffs/PHP/NoSilencedErrorsSniff.php
index 14dfaa7216..a3db4a167b 100644
--- a/src/Standards/Generic/Sniffs/PHP/NoSilencedErrorsSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/NoSilencedErrorsSniff.php
@@ -11,7 +11,7 @@
*
* @author Andy Brockhurst
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/PHP/RequireStrictTypesSniff.php b/src/Standards/Generic/Sniffs/PHP/RequireStrictTypesSniff.php
index bffe7439c7..0e3fb6dfe3 100644
--- a/src/Standards/Generic/Sniffs/PHP/RequireStrictTypesSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/RequireStrictTypesSniff.php
@@ -4,7 +4,7 @@
*
* @author Sertan Danis
* @copyright 2006-2019 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/PHP/SAPIUsageSniff.php b/src/Standards/Generic/Sniffs/PHP/SAPIUsageSniff.php
index 19d58572c6..05bac4528a 100644
--- a/src/Standards/Generic/Sniffs/PHP/SAPIUsageSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/SAPIUsageSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/PHP/SyntaxSniff.php b/src/Standards/Generic/Sniffs/PHP/SyntaxSniff.php
index 85e717bc99..144a0001b2 100644
--- a/src/Standards/Generic/Sniffs/PHP/SyntaxSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/SyntaxSniff.php
@@ -5,7 +5,7 @@
* @author Greg Sherwood
* @author Blaine Schmeisser
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/PHP/UpperCaseConstantSniff.php b/src/Standards/Generic/Sniffs/PHP/UpperCaseConstantSniff.php
index 2740884bb4..1a65f3c34e 100644
--- a/src/Standards/Generic/Sniffs/PHP/UpperCaseConstantSniff.php
+++ b/src/Standards/Generic/Sniffs/PHP/UpperCaseConstantSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\PHP;
diff --git a/src/Standards/Generic/Sniffs/Strings/UnnecessaryStringConcatSniff.php b/src/Standards/Generic/Sniffs/Strings/UnnecessaryStringConcatSniff.php
index 82dae8fb00..2d2286c9df 100644
--- a/src/Standards/Generic/Sniffs/Strings/UnnecessaryStringConcatSniff.php
+++ b/src/Standards/Generic/Sniffs/Strings/UnnecessaryStringConcatSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\Strings;
diff --git a/src/Standards/Generic/Sniffs/VersionControl/GitMergeConflictSniff.php b/src/Standards/Generic/Sniffs/VersionControl/GitMergeConflictSniff.php
index 83265b2e47..79035abe5d 100644
--- a/src/Standards/Generic/Sniffs/VersionControl/GitMergeConflictSniff.php
+++ b/src/Standards/Generic/Sniffs/VersionControl/GitMergeConflictSniff.php
@@ -4,7 +4,7 @@
*
* @author Juliette Reinders Folmer
* @copyright 2017 Juliette Reinders Folmer. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\VersionControl;
diff --git a/src/Standards/Generic/Sniffs/VersionControl/SubversionPropertiesSniff.php b/src/Standards/Generic/Sniffs/VersionControl/SubversionPropertiesSniff.php
index 3c3829a692..8fc4943003 100644
--- a/src/Standards/Generic/Sniffs/VersionControl/SubversionPropertiesSniff.php
+++ b/src/Standards/Generic/Sniffs/VersionControl/SubversionPropertiesSniff.php
@@ -4,7 +4,7 @@
*
* @author Jack Bates
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\VersionControl;
diff --git a/src/Standards/Generic/Sniffs/WhiteSpace/ArbitraryParenthesesSpacingSniff.php b/src/Standards/Generic/Sniffs/WhiteSpace/ArbitraryParenthesesSpacingSniff.php
index 09aea5436e..6beec4219b 100644
--- a/src/Standards/Generic/Sniffs/WhiteSpace/ArbitraryParenthesesSpacingSniff.php
+++ b/src/Standards/Generic/Sniffs/WhiteSpace/ArbitraryParenthesesSpacingSniff.php
@@ -7,7 +7,7 @@
*
* @author Juliette Reinders Folmer
* @copyright 2017 Juliette Reinders Folmer. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\WhiteSpace;
diff --git a/src/Standards/Generic/Sniffs/WhiteSpace/DisallowSpaceIndentSniff.php b/src/Standards/Generic/Sniffs/WhiteSpace/DisallowSpaceIndentSniff.php
index bbdbfe0a9a..e085e4ae80 100644
--- a/src/Standards/Generic/Sniffs/WhiteSpace/DisallowSpaceIndentSniff.php
+++ b/src/Standards/Generic/Sniffs/WhiteSpace/DisallowSpaceIndentSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\WhiteSpace;
diff --git a/src/Standards/Generic/Sniffs/WhiteSpace/DisallowTabIndentSniff.php b/src/Standards/Generic/Sniffs/WhiteSpace/DisallowTabIndentSniff.php
index 2140e55ef5..15d4580c94 100644
--- a/src/Standards/Generic/Sniffs/WhiteSpace/DisallowTabIndentSniff.php
+++ b/src/Standards/Generic/Sniffs/WhiteSpace/DisallowTabIndentSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\WhiteSpace;
diff --git a/src/Standards/Generic/Sniffs/WhiteSpace/IncrementDecrementSpacingSniff.php b/src/Standards/Generic/Sniffs/WhiteSpace/IncrementDecrementSpacingSniff.php
index 0ff30f4449..bde065e1c2 100644
--- a/src/Standards/Generic/Sniffs/WhiteSpace/IncrementDecrementSpacingSniff.php
+++ b/src/Standards/Generic/Sniffs/WhiteSpace/IncrementDecrementSpacingSniff.php
@@ -4,7 +4,7 @@
*
* @author Juliette Reinders Folmer
* @copyright 2018 Juliette Reinders Folmer. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\WhiteSpace;
diff --git a/src/Standards/Generic/Sniffs/WhiteSpace/LanguageConstructSpacingSniff.php b/src/Standards/Generic/Sniffs/WhiteSpace/LanguageConstructSpacingSniff.php
index 068a4e7f29..c577c9dc6f 100644
--- a/src/Standards/Generic/Sniffs/WhiteSpace/LanguageConstructSpacingSniff.php
+++ b/src/Standards/Generic/Sniffs/WhiteSpace/LanguageConstructSpacingSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2017 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\WhiteSpace;
diff --git a/src/Standards/Generic/Sniffs/WhiteSpace/ScopeIndentSniff.php b/src/Standards/Generic/Sniffs/WhiteSpace/ScopeIndentSniff.php
index 7fd604849d..17e9c7d7b4 100644
--- a/src/Standards/Generic/Sniffs/WhiteSpace/ScopeIndentSniff.php
+++ b/src/Standards/Generic/Sniffs/WhiteSpace/ScopeIndentSniff.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\WhiteSpace;
diff --git a/src/Standards/Generic/Sniffs/WhiteSpace/SpreadOperatorSpacingAfterSniff.php b/src/Standards/Generic/Sniffs/WhiteSpace/SpreadOperatorSpacingAfterSniff.php
index 070bbcd1fb..9479dd9bdb 100644
--- a/src/Standards/Generic/Sniffs/WhiteSpace/SpreadOperatorSpacingAfterSniff.php
+++ b/src/Standards/Generic/Sniffs/WhiteSpace/SpreadOperatorSpacingAfterSniff.php
@@ -4,7 +4,7 @@
*
* @author Juliette Reinders Folmer
* @copyright 2019 Juliette Reinders Folmer. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Sniffs\WhiteSpace;
diff --git a/src/Standards/Generic/Tests/Arrays/ArrayIndentUnitTest.php b/src/Standards/Generic/Tests/Arrays/ArrayIndentUnitTest.php
index 4861041f62..482742a356 100644
--- a/src/Standards/Generic/Tests/Arrays/ArrayIndentUnitTest.php
+++ b/src/Standards/Generic/Tests/Arrays/ArrayIndentUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Arrays;
diff --git a/src/Standards/Generic/Tests/Arrays/DisallowLongArraySyntaxUnitTest.php b/src/Standards/Generic/Tests/Arrays/DisallowLongArraySyntaxUnitTest.php
index af1d9c9a86..edd7e6d5a6 100644
--- a/src/Standards/Generic/Tests/Arrays/DisallowLongArraySyntaxUnitTest.php
+++ b/src/Standards/Generic/Tests/Arrays/DisallowLongArraySyntaxUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Arrays;
diff --git a/src/Standards/Generic/Tests/Arrays/DisallowShortArraySyntaxUnitTest.php b/src/Standards/Generic/Tests/Arrays/DisallowShortArraySyntaxUnitTest.php
index 25c9666ebd..d9d305db14 100644
--- a/src/Standards/Generic/Tests/Arrays/DisallowShortArraySyntaxUnitTest.php
+++ b/src/Standards/Generic/Tests/Arrays/DisallowShortArraySyntaxUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Arrays;
diff --git a/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.php b/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.php
index 68982f8686..8032ced0b9 100644
--- a/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.php
+++ b/src/Standards/Generic/Tests/Classes/DuplicateClassNameUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Classes;
diff --git a/src/Standards/Generic/Tests/Classes/OpeningBraceSameLineUnitTest.php b/src/Standards/Generic/Tests/Classes/OpeningBraceSameLineUnitTest.php
index c357afc927..1fa1e4d263 100644
--- a/src/Standards/Generic/Tests/Classes/OpeningBraceSameLineUnitTest.php
+++ b/src/Standards/Generic/Tests/Classes/OpeningBraceSameLineUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Classes;
diff --git a/src/Standards/Generic/Tests/CodeAnalysis/AssignmentInConditionUnitTest.php b/src/Standards/Generic/Tests/CodeAnalysis/AssignmentInConditionUnitTest.php
index 3ed57d2207..889b7010e7 100644
--- a/src/Standards/Generic/Tests/CodeAnalysis/AssignmentInConditionUnitTest.php
+++ b/src/Standards/Generic/Tests/CodeAnalysis/AssignmentInConditionUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Juliette Reinders Folmer
* @copyright 2017 Juliette Reinders Folmer. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\CodeAnalysis;
diff --git a/src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.php b/src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.php
index 23b3ec8fba..e83dff0a79 100644
--- a/src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.php
+++ b/src/Standards/Generic/Tests/CodeAnalysis/EmptyPHPStatementUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Juliette Reinders Folmer
* @copyright 2017 Juliette Reinders Folmer. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\CodeAnalysis;
diff --git a/src/Standards/Generic/Tests/CodeAnalysis/EmptyStatementUnitTest.php b/src/Standards/Generic/Tests/CodeAnalysis/EmptyStatementUnitTest.php
index 4e00ada1ca..464ea50435 100644
--- a/src/Standards/Generic/Tests/CodeAnalysis/EmptyStatementUnitTest.php
+++ b/src/Standards/Generic/Tests/CodeAnalysis/EmptyStatementUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Manuel Pichler
* @copyright 2007-2014 Manuel Pichler. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\CodeAnalysis;
diff --git a/src/Standards/Generic/Tests/CodeAnalysis/ForLoopShouldBeWhileLoopUnitTest.php b/src/Standards/Generic/Tests/CodeAnalysis/ForLoopShouldBeWhileLoopUnitTest.php
index 1d9eddaa6a..b474c086a0 100644
--- a/src/Standards/Generic/Tests/CodeAnalysis/ForLoopShouldBeWhileLoopUnitTest.php
+++ b/src/Standards/Generic/Tests/CodeAnalysis/ForLoopShouldBeWhileLoopUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Manuel Pichler
* @copyright 2007-2014 Manuel Pichler. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\CodeAnalysis;
diff --git a/src/Standards/Generic/Tests/CodeAnalysis/ForLoopWithTestFunctionCallUnitTest.php b/src/Standards/Generic/Tests/CodeAnalysis/ForLoopWithTestFunctionCallUnitTest.php
index 60f00b5d97..c2d45eea7d 100644
--- a/src/Standards/Generic/Tests/CodeAnalysis/ForLoopWithTestFunctionCallUnitTest.php
+++ b/src/Standards/Generic/Tests/CodeAnalysis/ForLoopWithTestFunctionCallUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Manuel Pichler
* @copyright 2007-2014 Manuel Pichler. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\CodeAnalysis;
diff --git a/src/Standards/Generic/Tests/CodeAnalysis/JumbledIncrementerUnitTest.php b/src/Standards/Generic/Tests/CodeAnalysis/JumbledIncrementerUnitTest.php
index d6f0e3d4a4..376df0c66c 100644
--- a/src/Standards/Generic/Tests/CodeAnalysis/JumbledIncrementerUnitTest.php
+++ b/src/Standards/Generic/Tests/CodeAnalysis/JumbledIncrementerUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Manuel Pichler
* @copyright 2007-2014 Manuel Pichler. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\CodeAnalysis;
diff --git a/src/Standards/Generic/Tests/CodeAnalysis/UnconditionalIfStatementUnitTest.php b/src/Standards/Generic/Tests/CodeAnalysis/UnconditionalIfStatementUnitTest.php
index a99fdd8dda..8f373d929b 100644
--- a/src/Standards/Generic/Tests/CodeAnalysis/UnconditionalIfStatementUnitTest.php
+++ b/src/Standards/Generic/Tests/CodeAnalysis/UnconditionalIfStatementUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Manuel Pichler
* @copyright 2007-2014 Manuel Pichler. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\CodeAnalysis;
diff --git a/src/Standards/Generic/Tests/CodeAnalysis/UnnecessaryFinalModifierUnitTest.php b/src/Standards/Generic/Tests/CodeAnalysis/UnnecessaryFinalModifierUnitTest.php
index 33bb160a04..5f65d6e3f6 100644
--- a/src/Standards/Generic/Tests/CodeAnalysis/UnnecessaryFinalModifierUnitTest.php
+++ b/src/Standards/Generic/Tests/CodeAnalysis/UnnecessaryFinalModifierUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Manuel Pichler
* @copyright 2007-2014 Manuel Pichler. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\CodeAnalysis;
diff --git a/src/Standards/Generic/Tests/CodeAnalysis/UnusedFunctionParameterUnitTest.php b/src/Standards/Generic/Tests/CodeAnalysis/UnusedFunctionParameterUnitTest.php
index 063c72073e..b6384888e5 100644
--- a/src/Standards/Generic/Tests/CodeAnalysis/UnusedFunctionParameterUnitTest.php
+++ b/src/Standards/Generic/Tests/CodeAnalysis/UnusedFunctionParameterUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Manuel Pichler
* @copyright 2007-2014 Manuel Pichler. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\CodeAnalysis;
diff --git a/src/Standards/Generic/Tests/CodeAnalysis/UselessOverridingMethodUnitTest.php b/src/Standards/Generic/Tests/CodeAnalysis/UselessOverridingMethodUnitTest.php
index d6ea1d03ba..b04b2743aa 100644
--- a/src/Standards/Generic/Tests/CodeAnalysis/UselessOverridingMethodUnitTest.php
+++ b/src/Standards/Generic/Tests/CodeAnalysis/UselessOverridingMethodUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Manuel Pichler
* @copyright 2007-2014 Manuel Pichler. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\CodeAnalysis;
diff --git a/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.inc b/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.inc
index 81366272c9..8824166722 100644
--- a/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.inc
+++ b/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.inc
@@ -144,7 +144,7 @@
* @author Greg Sherwood
* @author Marc McIntyre
* @copyright 2006-2012 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
@@ -232,7 +232,7 @@
* @author Greg Sherwood
* @author Marc McIntyre
* @copyright 2006-2012 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
@@ -245,7 +245,7 @@
* @author Greg Sherwood
* @author Marc McIntyre
* @copyright 2006-2012 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
diff --git a/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.inc.fixed b/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.inc.fixed
index 43ce064a5d..46b4cd05bb 100644
--- a/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.inc.fixed
+++ b/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.inc.fixed
@@ -139,7 +139,7 @@
* @author Greg Sherwood
* @author Marc McIntyre
* @copyright 2006-2012 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
@@ -237,7 +237,7 @@
* @author Greg Sherwood
* @author Marc McIntyre
* @copyright 2006-2012 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
@@ -250,7 +250,7 @@
* @author Greg Sherwood
* @author Marc McIntyre
* @copyright 2006-2012 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
diff --git a/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.js b/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.js
index b3283f7853..3506fe0cf8 100644
--- a/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.js
+++ b/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.js
@@ -144,7 +144,7 @@
* @author Greg Sherwood
* @author Marc McIntyre
* @copyright 2006-2012 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
@@ -232,7 +232,7 @@
* @author Greg Sherwood
* @author Marc McIntyre
* @copyright 2006-2012 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
@@ -245,6 +245,6 @@
* @author Greg Sherwood
* @author Marc McIntyre
* @copyright 2006-2012 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
diff --git a/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.js.fixed b/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.js.fixed
index 0df0687a2f..f4ca127d66 100644
--- a/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.js.fixed
+++ b/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.js.fixed
@@ -139,7 +139,7 @@
* @author Greg Sherwood
* @author Marc McIntyre
* @copyright 2006-2012 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
@@ -237,7 +237,7 @@
* @author Greg Sherwood
* @author Marc McIntyre
* @copyright 2006-2012 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
@@ -250,6 +250,6 @@
* @author Greg Sherwood
* @author Marc McIntyre
* @copyright 2006-2012 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
* @link http://pear.php.net/package/PHP_CodeSniffer
*/
diff --git a/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.php b/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.php
index 57937581ba..4f2c18f9e4 100644
--- a/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.php
+++ b/src/Standards/Generic/Tests/Commenting/DocCommentUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Commenting;
diff --git a/src/Standards/Generic/Tests/Commenting/FixmeUnitTest.php b/src/Standards/Generic/Tests/Commenting/FixmeUnitTest.php
index e14ab316c3..49104febae 100644
--- a/src/Standards/Generic/Tests/Commenting/FixmeUnitTest.php
+++ b/src/Standards/Generic/Tests/Commenting/FixmeUnitTest.php
@@ -5,7 +5,7 @@
* @author Greg Sherwood
* @author Sam Graham
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Commenting;
diff --git a/src/Standards/Generic/Tests/Commenting/TodoUnitTest.php b/src/Standards/Generic/Tests/Commenting/TodoUnitTest.php
index 4864b9373a..0651595326 100644
--- a/src/Standards/Generic/Tests/Commenting/TodoUnitTest.php
+++ b/src/Standards/Generic/Tests/Commenting/TodoUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Commenting;
diff --git a/src/Standards/Generic/Tests/ControlStructures/DisallowYodaConditionsUnitTest.php b/src/Standards/Generic/Tests/ControlStructures/DisallowYodaConditionsUnitTest.php
index c558ae8f6f..1fd642c8f3 100644
--- a/src/Standards/Generic/Tests/ControlStructures/DisallowYodaConditionsUnitTest.php
+++ b/src/Standards/Generic/Tests/ControlStructures/DisallowYodaConditionsUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\ControlStructures;
diff --git a/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.php b/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.php
index a9c4f4f8ed..d7e07bb777 100644
--- a/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.php
+++ b/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\ControlStructures;
diff --git a/src/Standards/Generic/Tests/Debug/CSSLintUnitTest.php b/src/Standards/Generic/Tests/Debug/CSSLintUnitTest.php
index 2b86facc16..38ab9a3581 100644
--- a/src/Standards/Generic/Tests/Debug/CSSLintUnitTest.php
+++ b/src/Standards/Generic/Tests/Debug/CSSLintUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Juliette Reinders Folmer
* @copyright 2019 Juliette Reinders Folmer. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Debug;
diff --git a/src/Standards/Generic/Tests/Debug/ClosureLinterUnitTest.php b/src/Standards/Generic/Tests/Debug/ClosureLinterUnitTest.php
index 2d960f32d9..25a05a34f8 100644
--- a/src/Standards/Generic/Tests/Debug/ClosureLinterUnitTest.php
+++ b/src/Standards/Generic/Tests/Debug/ClosureLinterUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Juliette Reinders Folmer
* @copyright 2019 Juliette Reinders Folmer. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Debug;
diff --git a/src/Standards/Generic/Tests/Debug/ESLintUnitTest.php b/src/Standards/Generic/Tests/Debug/ESLintUnitTest.php
index 0a079d1489..aae2af2195 100644
--- a/src/Standards/Generic/Tests/Debug/ESLintUnitTest.php
+++ b/src/Standards/Generic/Tests/Debug/ESLintUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Juliette Reinders Folmer
* @copyright 2019 Juliette Reinders Folmer. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Debug;
diff --git a/src/Standards/Generic/Tests/Debug/JSHintUnitTest.php b/src/Standards/Generic/Tests/Debug/JSHintUnitTest.php
index 6a10e2ad8b..27a56033f8 100644
--- a/src/Standards/Generic/Tests/Debug/JSHintUnitTest.php
+++ b/src/Standards/Generic/Tests/Debug/JSHintUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Juliette Reinders Folmer
* @copyright 2019 Juliette Reinders Folmer. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Debug;
diff --git a/src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.php b/src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.php
index a95331d72c..2e9fc9ef7a 100644
--- a/src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.php
+++ b/src/Standards/Generic/Tests/Files/ByteOrderMarkUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Files;
diff --git a/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.php b/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.php
index f5ab9ffa6f..ebda19cbb1 100644
--- a/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.php
+++ b/src/Standards/Generic/Tests/Files/EndFileNewlineUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Files;
diff --git a/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.php b/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.php
index 88dc2f88a1..1333eb7746 100644
--- a/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.php
+++ b/src/Standards/Generic/Tests/Files/EndFileNoNewlineUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Files;
diff --git a/src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.php b/src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.php
index 269102dd3e..3aae0bab07 100644
--- a/src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.php
+++ b/src/Standards/Generic/Tests/Files/ExecutableFileUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Matthew Peveler
* @copyright 2019 Matthew Peveler
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Files;
diff --git a/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.php b/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.php
index 4403e5d525..870d16788a 100644
--- a/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.php
+++ b/src/Standards/Generic/Tests/Files/InlineHTMLUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Files;
diff --git a/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.php b/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.php
index 772d4c4a56..10dcc702b2 100644
--- a/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.php
+++ b/src/Standards/Generic/Tests/Files/LineEndingsUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Files;
diff --git a/src/Standards/Generic/Tests/Files/LineLengthUnitTest.php b/src/Standards/Generic/Tests/Files/LineLengthUnitTest.php
index 4414753a1f..b37f1eb678 100644
--- a/src/Standards/Generic/Tests/Files/LineLengthUnitTest.php
+++ b/src/Standards/Generic/Tests/Files/LineLengthUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Files;
diff --git a/src/Standards/Generic/Tests/Files/LowercasedFilenameUnitTest.php b/src/Standards/Generic/Tests/Files/LowercasedFilenameUnitTest.php
index f67a40a3be..a0033a7a19 100644
--- a/src/Standards/Generic/Tests/Files/LowercasedFilenameUnitTest.php
+++ b/src/Standards/Generic/Tests/Files/LowercasedFilenameUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Andy Grunwald
* @copyright 2010-2014 Andy Grunwald
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Files;
diff --git a/src/Standards/Generic/Tests/Files/OneClassPerFileUnitTest.php b/src/Standards/Generic/Tests/Files/OneClassPerFileUnitTest.php
index 42a962284e..984daf7170 100644
--- a/src/Standards/Generic/Tests/Files/OneClassPerFileUnitTest.php
+++ b/src/Standards/Generic/Tests/Files/OneClassPerFileUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Andy Grunwald
* @copyright 2010-2014 Andy Grunwald
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Files;
diff --git a/src/Standards/Generic/Tests/Files/OneInterfacePerFileUnitTest.php b/src/Standards/Generic/Tests/Files/OneInterfacePerFileUnitTest.php
index f083178793..deced9a4af 100644
--- a/src/Standards/Generic/Tests/Files/OneInterfacePerFileUnitTest.php
+++ b/src/Standards/Generic/Tests/Files/OneInterfacePerFileUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Andy Grunwald
* @copyright 2010-2014 Andy Grunwald
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Files;
diff --git a/src/Standards/Generic/Tests/Files/OneObjectStructurePerFileUnitTest.php b/src/Standards/Generic/Tests/Files/OneObjectStructurePerFileUnitTest.php
index 36a4bb9385..d9e0fc2123 100644
--- a/src/Standards/Generic/Tests/Files/OneObjectStructurePerFileUnitTest.php
+++ b/src/Standards/Generic/Tests/Files/OneObjectStructurePerFileUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Mponos George
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Files;
diff --git a/src/Standards/Generic/Tests/Files/OneTraitPerFileUnitTest.php b/src/Standards/Generic/Tests/Files/OneTraitPerFileUnitTest.php
index 5519309eed..9fe3e4d284 100644
--- a/src/Standards/Generic/Tests/Files/OneTraitPerFileUnitTest.php
+++ b/src/Standards/Generic/Tests/Files/OneTraitPerFileUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Alexander Obuhovich
* @copyright 2010-2014 Alexander Obuhovich
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Files;
diff --git a/src/Standards/Generic/Tests/Formatting/DisallowMultipleStatementsUnitTest.php b/src/Standards/Generic/Tests/Formatting/DisallowMultipleStatementsUnitTest.php
index 84044d58d9..fb91599052 100644
--- a/src/Standards/Generic/Tests/Formatting/DisallowMultipleStatementsUnitTest.php
+++ b/src/Standards/Generic/Tests/Formatting/DisallowMultipleStatementsUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Formatting;
diff --git a/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.php b/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.php
index 23f2f9a780..c6972a9d99 100644
--- a/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.php
+++ b/src/Standards/Generic/Tests/Formatting/MultipleStatementAlignmentUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Formatting;
diff --git a/src/Standards/Generic/Tests/Formatting/NoSpaceAfterCastUnitTest.php b/src/Standards/Generic/Tests/Formatting/NoSpaceAfterCastUnitTest.php
index 58627615fd..b2f3f6da34 100644
--- a/src/Standards/Generic/Tests/Formatting/NoSpaceAfterCastUnitTest.php
+++ b/src/Standards/Generic/Tests/Formatting/NoSpaceAfterCastUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Formatting;
diff --git a/src/Standards/Generic/Tests/Formatting/SpaceAfterCastUnitTest.php b/src/Standards/Generic/Tests/Formatting/SpaceAfterCastUnitTest.php
index 505ded6c51..8507665649 100644
--- a/src/Standards/Generic/Tests/Formatting/SpaceAfterCastUnitTest.php
+++ b/src/Standards/Generic/Tests/Formatting/SpaceAfterCastUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Formatting;
diff --git a/src/Standards/Generic/Tests/Formatting/SpaceAfterNotUnitTest.php b/src/Standards/Generic/Tests/Formatting/SpaceAfterNotUnitTest.php
index 9019bb49d7..3b49e07971 100644
--- a/src/Standards/Generic/Tests/Formatting/SpaceAfterNotUnitTest.php
+++ b/src/Standards/Generic/Tests/Formatting/SpaceAfterNotUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Formatting;
diff --git a/src/Standards/Generic/Tests/Formatting/SpaceBeforeCastUnitTest.php b/src/Standards/Generic/Tests/Formatting/SpaceBeforeCastUnitTest.php
index aed6b32ae4..cd2294919e 100644
--- a/src/Standards/Generic/Tests/Formatting/SpaceBeforeCastUnitTest.php
+++ b/src/Standards/Generic/Tests/Formatting/SpaceBeforeCastUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Formatting;
diff --git a/src/Standards/Generic/Tests/Functions/CallTimePassByReferenceUnitTest.php b/src/Standards/Generic/Tests/Functions/CallTimePassByReferenceUnitTest.php
index 1c10c99fac..eee6288a0f 100644
--- a/src/Standards/Generic/Tests/Functions/CallTimePassByReferenceUnitTest.php
+++ b/src/Standards/Generic/Tests/Functions/CallTimePassByReferenceUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Functions;
diff --git a/src/Standards/Generic/Tests/Functions/FunctionCallArgumentSpacingUnitTest.php b/src/Standards/Generic/Tests/Functions/FunctionCallArgumentSpacingUnitTest.php
index 5f87962e62..be92b743db 100644
--- a/src/Standards/Generic/Tests/Functions/FunctionCallArgumentSpacingUnitTest.php
+++ b/src/Standards/Generic/Tests/Functions/FunctionCallArgumentSpacingUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Functions;
diff --git a/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceBsdAllmanUnitTest.php b/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceBsdAllmanUnitTest.php
index 10af4fd55a..6d4abebaad 100644
--- a/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceBsdAllmanUnitTest.php
+++ b/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceBsdAllmanUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Functions;
diff --git a/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceKernighanRitchieUnitTest.php b/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceKernighanRitchieUnitTest.php
index aee774f79a..7cd60a3023 100644
--- a/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceKernighanRitchieUnitTest.php
+++ b/src/Standards/Generic/Tests/Functions/OpeningFunctionBraceKernighanRitchieUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Functions;
diff --git a/src/Standards/Generic/Tests/Metrics/CyclomaticComplexityUnitTest.php b/src/Standards/Generic/Tests/Metrics/CyclomaticComplexityUnitTest.php
index d3860dff9e..77a3092984 100644
--- a/src/Standards/Generic/Tests/Metrics/CyclomaticComplexityUnitTest.php
+++ b/src/Standards/Generic/Tests/Metrics/CyclomaticComplexityUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Metrics;
diff --git a/src/Standards/Generic/Tests/Metrics/NestingLevelUnitTest.php b/src/Standards/Generic/Tests/Metrics/NestingLevelUnitTest.php
index ccd7550763..e9e44a3d4e 100644
--- a/src/Standards/Generic/Tests/Metrics/NestingLevelUnitTest.php
+++ b/src/Standards/Generic/Tests/Metrics/NestingLevelUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Metrics;
diff --git a/src/Standards/Generic/Tests/NamingConventions/AbstractClassNamePrefixUnitTest.php b/src/Standards/Generic/Tests/NamingConventions/AbstractClassNamePrefixUnitTest.php
index 7be4e8f887..64450b42a0 100644
--- a/src/Standards/Generic/Tests/NamingConventions/AbstractClassNamePrefixUnitTest.php
+++ b/src/Standards/Generic/Tests/NamingConventions/AbstractClassNamePrefixUnitTest.php
@@ -3,7 +3,7 @@
* Unit test class for the AbstractClassNamePrefix sniff.
*
* @author Anna Borzenko
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\NamingConventions;
diff --git a/src/Standards/Generic/Tests/NamingConventions/CamelCapsFunctionNameUnitTest.php b/src/Standards/Generic/Tests/NamingConventions/CamelCapsFunctionNameUnitTest.php
index 3d0320c3ae..795a6a7428 100644
--- a/src/Standards/Generic/Tests/NamingConventions/CamelCapsFunctionNameUnitTest.php
+++ b/src/Standards/Generic/Tests/NamingConventions/CamelCapsFunctionNameUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\NamingConventions;
diff --git a/src/Standards/Generic/Tests/NamingConventions/ConstructorNameUnitTest.php b/src/Standards/Generic/Tests/NamingConventions/ConstructorNameUnitTest.php
index e6c6df3f23..2122f16b24 100644
--- a/src/Standards/Generic/Tests/NamingConventions/ConstructorNameUnitTest.php
+++ b/src/Standards/Generic/Tests/NamingConventions/ConstructorNameUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\NamingConventions;
diff --git a/src/Standards/Generic/Tests/NamingConventions/InterfaceNameSuffixUnitTest.php b/src/Standards/Generic/Tests/NamingConventions/InterfaceNameSuffixUnitTest.php
index be23f7a656..66360bcff0 100644
--- a/src/Standards/Generic/Tests/NamingConventions/InterfaceNameSuffixUnitTest.php
+++ b/src/Standards/Generic/Tests/NamingConventions/InterfaceNameSuffixUnitTest.php
@@ -3,7 +3,7 @@
* Unit test class for the InterfaceNameSuffix sniff.
*
* @author Anna Borzenko
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\NamingConventions;
diff --git a/src/Standards/Generic/Tests/NamingConventions/TraitNameSuffixUnitTest.php b/src/Standards/Generic/Tests/NamingConventions/TraitNameSuffixUnitTest.php
index 742fdd1ab4..b8d5ba7982 100644
--- a/src/Standards/Generic/Tests/NamingConventions/TraitNameSuffixUnitTest.php
+++ b/src/Standards/Generic/Tests/NamingConventions/TraitNameSuffixUnitTest.php
@@ -3,7 +3,7 @@
* Unit test class for the TraitNameSuffix sniff.
*
* @author Anna Borzenko
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\NamingConventions;
diff --git a/src/Standards/Generic/Tests/NamingConventions/UpperCaseConstantNameUnitTest.php b/src/Standards/Generic/Tests/NamingConventions/UpperCaseConstantNameUnitTest.php
index 8db68c8aa9..de68dd6006 100644
--- a/src/Standards/Generic/Tests/NamingConventions/UpperCaseConstantNameUnitTest.php
+++ b/src/Standards/Generic/Tests/NamingConventions/UpperCaseConstantNameUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\NamingConventions;
diff --git a/src/Standards/Generic/Tests/PHP/BacktickOperatorUnitTest.php b/src/Standards/Generic/Tests/PHP/BacktickOperatorUnitTest.php
index a2541851d7..27c405a883 100644
--- a/src/Standards/Generic/Tests/PHP/BacktickOperatorUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/BacktickOperatorUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/PHP/CharacterBeforePHPOpeningTagUnitTest.php b/src/Standards/Generic/Tests/PHP/CharacterBeforePHPOpeningTagUnitTest.php
index 11f4f14dad..a3fdb72ab9 100644
--- a/src/Standards/Generic/Tests/PHP/CharacterBeforePHPOpeningTagUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/CharacterBeforePHPOpeningTagUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Andy Grunwald
* @copyright 2010-2014 Andy Grunwald
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/PHP/ClosingPHPTagUnitTest.php b/src/Standards/Generic/Tests/PHP/ClosingPHPTagUnitTest.php
index 9c567b7bad..1b88883a99 100644
--- a/src/Standards/Generic/Tests/PHP/ClosingPHPTagUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/ClosingPHPTagUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Andy Grunwald
* @copyright 2010-2014 Andy Grunwald
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/PHP/DeprecatedFunctionsUnitTest.php b/src/Standards/Generic/Tests/PHP/DeprecatedFunctionsUnitTest.php
index d2f7cb803d..32af71d2d3 100644
--- a/src/Standards/Generic/Tests/PHP/DeprecatedFunctionsUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/DeprecatedFunctionsUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Juliette Reinders Folmer
* @copyright 2019 Juliette Reinders Folmer. All rights reserved.
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.php b/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.php
index 953e8ad9b5..90c9c137c2 100644
--- a/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/DisallowAlternativePHPTagsUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/PHP/DisallowRequestSuperglobalUnitTest.php b/src/Standards/Generic/Tests/PHP/DisallowRequestSuperglobalUnitTest.php
index 7ece551201..05f6198ee4 100644
--- a/src/Standards/Generic/Tests/PHP/DisallowRequestSuperglobalUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/DisallowRequestSuperglobalUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Jeantwan Teuma
* @copyright 2006-2019 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.php b/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.php
index b79572ce6b..3edda9a567 100644
--- a/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/DisallowShortOpenTagUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/PHP/DiscourageGotoUnitTest.php b/src/Standards/Generic/Tests/PHP/DiscourageGotoUnitTest.php
index c1f82d61b7..f96b41bf2c 100644
--- a/src/Standards/Generic/Tests/PHP/DiscourageGotoUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/DiscourageGotoUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2017 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/PHP/ForbiddenFunctionsUnitTest.php b/src/Standards/Generic/Tests/PHP/ForbiddenFunctionsUnitTest.php
index 760e807868..a0e86f2393 100644
--- a/src/Standards/Generic/Tests/PHP/ForbiddenFunctionsUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/ForbiddenFunctionsUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/PHP/LowerCaseConstantUnitTest.php b/src/Standards/Generic/Tests/PHP/LowerCaseConstantUnitTest.php
index 2fb2d6f6dc..23af1226d8 100644
--- a/src/Standards/Generic/Tests/PHP/LowerCaseConstantUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/LowerCaseConstantUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/PHP/LowerCaseKeywordUnitTest.php b/src/Standards/Generic/Tests/PHP/LowerCaseKeywordUnitTest.php
index 6d08e12751..2d415eff1e 100644
--- a/src/Standards/Generic/Tests/PHP/LowerCaseKeywordUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/LowerCaseKeywordUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/PHP/LowerCaseTypeUnitTest.php b/src/Standards/Generic/Tests/PHP/LowerCaseTypeUnitTest.php
index fa05aba6a3..197b734a1f 100644
--- a/src/Standards/Generic/Tests/PHP/LowerCaseTypeUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/LowerCaseTypeUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/PHP/NoSilencedErrorsUnitTest.php b/src/Standards/Generic/Tests/PHP/NoSilencedErrorsUnitTest.php
index 0e7a4eaa40..a2d3ff8a6e 100644
--- a/src/Standards/Generic/Tests/PHP/NoSilencedErrorsUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/NoSilencedErrorsUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.php b/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.php
index 4ab417cd02..1340829a0b 100644
--- a/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/RequireStrictTypesUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Sertan Danis
* @copyright 2006-2019 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/PHP/SAPIUsageUnitTest.php b/src/Standards/Generic/Tests/PHP/SAPIUsageUnitTest.php
index 08c0ccdcfb..24229b7536 100644
--- a/src/Standards/Generic/Tests/PHP/SAPIUsageUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/SAPIUsageUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/PHP/SyntaxUnitTest.php b/src/Standards/Generic/Tests/PHP/SyntaxUnitTest.php
index 98d205ce43..0477733c34 100644
--- a/src/Standards/Generic/Tests/PHP/SyntaxUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/SyntaxUnitTest.php
@@ -5,7 +5,7 @@
* @author Greg Sherwood
* @author Blaine Schmeisser
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/PHP/UpperCaseConstantUnitTest.php b/src/Standards/Generic/Tests/PHP/UpperCaseConstantUnitTest.php
index 30e5776337..486ab915bf 100644
--- a/src/Standards/Generic/Tests/PHP/UpperCaseConstantUnitTest.php
+++ b/src/Standards/Generic/Tests/PHP/UpperCaseConstantUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\PHP;
diff --git a/src/Standards/Generic/Tests/Strings/UnnecessaryStringConcatUnitTest.php b/src/Standards/Generic/Tests/Strings/UnnecessaryStringConcatUnitTest.php
index 6a9284822c..dcf6d68875 100644
--- a/src/Standards/Generic/Tests/Strings/UnnecessaryStringConcatUnitTest.php
+++ b/src/Standards/Generic/Tests/Strings/UnnecessaryStringConcatUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Greg Sherwood
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
- * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
+ * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Generic\Tests\Strings;
diff --git a/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.php b/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.php
index 50986f48bb..050b08ee9a 100644
--- a/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.php
+++ b/src/Standards/Generic/Tests/VersionControl/GitMergeConflictUnitTest.php
@@ -4,7 +4,7 @@
*
* @author Juliette Reinders Folmer