generated from ergebnis/php-cs-fixer-config-template
-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Remove RuleSet\AbstractRuleSet::DOCTRINE_IGNORED_TAGS
- Loading branch information
1 parent
111cebb
commit bab9a8d
Showing
28 changed files
with
218 additions
and
296 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 |
---|---|---|
@@ -0,0 +1,120 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* Copyright (c) 2019-2023 Andreas Möller | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE.md file that was distributed with this source code. | ||
* | ||
* @see https://github.com/ergebnis/php-cs-fixer-config | ||
*/ | ||
|
||
namespace Ergebnis\PhpCsFixer\Config\RuleSet; | ||
|
||
/** | ||
* @internal | ||
*/ | ||
final class Doctrine | ||
{ | ||
/** | ||
* A list of tags that should be ignored by fixers related to Doctrine. | ||
* | ||
* @see https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v3.1.0/doc/rules/doctrine_annotation/doctrine_annotation_array_assignment.rst | ||
* @see https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v3.1.0/doc/rules/doctrine_annotation/doctrine_annotation_braces.rst | ||
* @see https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v3.1.0/doc/rules/doctrine_annotation/doctrine_annotation_indentation.rst | ||
* @see https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v3.1.0/doc/rules/doctrine_annotation/doctrine_annotation_spaces.rst | ||
*/ | ||
public const IGNORED_TAGS = [ | ||
'abstract', | ||
'access', | ||
'after', | ||
'afterClass', | ||
'api', | ||
'author', | ||
'backupGlobals', | ||
'backupStaticAttributes', | ||
'before', | ||
'beforeClass', | ||
'category', | ||
'code', | ||
'codeCoverageIgnore', | ||
'codeCoverageIgnoreEnd', | ||
'codeCoverageIgnoreStart', | ||
'copyright', | ||
'covers', | ||
'coversDefaultClass', | ||
'coversNothing', | ||
'dataProvider', | ||
'depends', | ||
'deprec', | ||
'deprecated', | ||
'encode', | ||
'enduml', | ||
'example', | ||
'exception', | ||
'expectedException', | ||
'expectedExceptionCode', | ||
'expectedExceptionMessage', | ||
'expectedExceptionMessageRegExp', | ||
'filesource', | ||
'final', | ||
'fix', | ||
'FIXME', | ||
'fixme', | ||
'global', | ||
'group', | ||
'ignore', | ||
'ingroup', | ||
'inheritdoc', | ||
'inheritDoc', | ||
'internal', | ||
'large', | ||
'license', | ||
'link', | ||
'magic', | ||
'medium', | ||
'method', | ||
'name', | ||
'noinspection', | ||
'override', | ||
'package', | ||
'package_version', | ||
'param', | ||
'preserveGlobalState', | ||
'private', | ||
'property', | ||
'property-read', | ||
'property-write', | ||
'requires', | ||
'return', | ||
'runInSeparateProcess', | ||
'runTestsInSeparateProcesses', | ||
'see', | ||
'since', | ||
'small', | ||
'source', | ||
'startuml', | ||
'static', | ||
'staticvar', | ||
'staticVar', | ||
'subpackage', | ||
'SuppressWarnings', | ||
'template', | ||
'test', | ||
'testdox', | ||
'throw', | ||
'throws', | ||
'ticket', | ||
'toc', | ||
'todo', | ||
'TODO', | ||
'tutorial', | ||
'usedBy', | ||
'uses', | ||
'uses', | ||
'var', | ||
'version', | ||
]; | ||
} |
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
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.