Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .dev-tools/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"ergebnis/composer-normalize": "^2.48.2",
"infection/infection": "^0.31.2",
"kubawerlos/composer-smaller-lock": "^1.1.0",
"kubawerlos/php-cs-fixer-config": "^5.3",
"kubawerlos/php-cs-fixer-config": "^5.4",
"mi-schi/phpmd-extension": "^4.3",
"phpmd/phpmd": "^2.15",
"phpstan/extension-installer": "^1.4.3",
Expand Down
22 changes: 11 additions & 11 deletions .dev-tools/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .dev-tools/psalm_stub.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
*/

namespace PhpCsFixer\Tokenizer {
/**
* @internal
*/
final class FCT
{
public const int T_ATTRIBUTE = \T_ATTRIBUTE;
Expand All @@ -18,5 +21,8 @@ final class FCT
public const int T_PUBLIC_SET = \T_PUBLIC_SET;
public const int T_READONLY = \T_READONLY;
}
/**
* @internal
*/
final class OtherClassSoTheNameOfClassAboveIsNotChanged {}
}
3 changes: 3 additions & 0 deletions .dev-tools/src/InfectionConfigBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
use Infection\Mutator\ProfileList;
use PhpCsFixerCustomFixers\Fixer\NoLeadingSlashInGlobalNamespaceFixer;

/**
* @internal
*/
final class InfectionConfigBuilder
{
private const UNWANTED_MUTATORS = [
Expand Down
3 changes: 3 additions & 0 deletions .dev-tools/src/Priority/PriorityCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
use PhpCsFixerCustomFixers\Fixers;
use Tests\PriorityTest;

/**
* @internal
*/
final class PriorityCollection
{
/** @var list<PriorityFixer> */
Expand Down
3 changes: 3 additions & 0 deletions .dev-tools/src/Priority/PriorityFixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@

use PhpCsFixer\Fixer\FixerInterface;

/**
* @internal
*/
final class PriorityFixer
{
private FixerInterface $fixer;
Expand Down
3 changes: 3 additions & 0 deletions tests/AssertSameTokensTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
use PhpCsFixer\Tokenizer\Token;
use PhpCsFixer\Tokenizer\Tokens;

/**
* @internal
*/
trait AssertSameTokensTrait
{
private static function assertSameTokens(Tokens $expectedTokens, Tokens $inputTokens): void
Expand Down
Loading