-
-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Use and apply TYPO3 coding standards, rector and type hinting
This change integrates the typo3/coding-standards See: https://github.com/TYPO3/coding-standards This commit contains the changes after run of TYPO3 codings standards and Rector. Each file was checked manually and the unnecessary changes were rejected. Relates: #3198 Closes: #3170 Fixes: #3208
- Loading branch information
Showing
400 changed files
with
6,159 additions
and
5,394 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
.Build | ||
.buildpath | ||
.DS_Store | ||
.idea/ | ||
.php_cs.cache | ||
.project/ | ||
.settings/ | ||
.idea/ | ||
atlassian-ide-plugin.xml | ||
.DS_Store | ||
composer.lock | ||
Documentation/_make | ||
index.php | ||
typo3 | ||
typo3_src | ||
typo3conf | ||
typo3temp | ||
typo3_src | ||
uploads | ||
var | ||
vendor | ||
/composer.lock | ||
.Build | ||
Documentation/_make | ||
|
||
.php_cs.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
$config = \TYPO3\CodingStandards\CsFixerConfig::create(); | ||
$config->getFinder() | ||
->exclude([ | ||
'.Build' | ||
]) | ||
->in(__DIR__); | ||
return $config; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.