Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

composer(deps-dev): Bump ergebnis/php-cs-fixer-config from 6.2.0 to 6.7.0 #642

Merged
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 composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"doctrine/orm": "^2.16.2",
"ergebnis/composer-normalize": "^2.38.0",
"ergebnis/license": "^2.2.0",
"ergebnis/php-cs-fixer-config": "^6.2.0",
"ergebnis/php-cs-fixer-config": "^6.7.0",
"ergebnis/phpunit-slow-test-detector": "^2.3.0",
"nette/di": "^3.1.5",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
Expand Down
79 changes: 41 additions & 38 deletions composer.lock

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

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Ergebnis\PHPStan\Rules\Test\Fixture\Classes\FinalRuleWithAttributes\Failure;

#[Doctrine\ORM\Mapping\Entity]
#[Doctrine\ORM\Mapping\Entity()]
class NonFinalClassWithUnqualifiedDoctrineOrmMappingEntityAttribute
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Ergebnis\PHPStan\Rules\Test\Fixture\Classes\FinalRuleWithAttributes\Failure;

#[Entity]
#[Entity()]
class NonFinalClassWithUnqualifiedEntityAttribute
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Ergebnis\PHPStan\Rules\Test\Fixture\Classes\FinalRuleWithAttributes\Failure;

#[ORM\Entity]
#[ORM\Entity()]
class NonFinalClassWithUnqualifiedOrmEntityAttribute
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Ergebnis\PHPStan\Rules\Test\Fixture\Classes\FinalRuleWithAttributes\Failure;

#[ORM\Mapping\Entity]
#[ORM\Mapping\Entity()]
class NonFinalClassWithUnqualifiedOrmMappingEntityAttribute
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Doctrine\ORM\Mapping as ORM;

#[ORM\Entity]
#[ORM\Entity()]
class NonFinalClassWithAliasedOrmEntityAttribute
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Ergebnis\PHPStan\Rules\Test\Fixture\Classes\FinalRuleWithAttributes\Success;

#[\Doctrine\ORM\Mapping\Entity]
#[\Doctrine\ORM\Mapping\Entity()]
class NonFinalClassWithQualifiedDoctrineOrmMappingEntityAttribute
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Doctrine\ORM\Mapping\Entity;

#[Entity]
#[Entity()]
class NonFinalClassWithQualifiedEntityAttribute
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Doctrine\ORM\Mapping;

#[Mapping\Entity]
#[Mapping\Entity()]
class NonFinalClassWithQualifiedMappingEntityAttribute
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Doctrine\ORM;

#[ORM\Mapping\Entity]
#[ORM\Mapping\Entity()]
class NonFinalClassWithQualifiedOrmMappingEntityAttribute
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use PHPUnit\Framework;

#[Framework\Attributes\CoversNothing]
#[Framework\Attributes\CoversNothing()]
final class ClassExtendingPhpUnitFrameworkTestCase extends Framework\TestCase
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use PHPUnit\Framework;

#[Framework\Attributes\CoversNothing]
#[Framework\Attributes\CoversNothing()]
final class ClassExtendingPhpUnitFrameworkTestCase extends Framework\TestCase
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use PHPUnit\Framework;

#[Framework\Attributes\CoversNothing]
#[Framework\Attributes\CoversNothing()]
final class ConcreteTestCaseExtendingAbstractTestCaseWithoutTestSuffix extends AbstractTestCase
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use PHPUnit\Framework;

#[Framework\Attributes\CoversNothing]
#[Framework\Attributes\CoversNothing()]
final class ConcreteTestCaseWithoutTestSuffix extends Framework\TestCase
{
public function testFooIsNotBar(): void
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use PHPUnit\Framework;

#[Framework\Attributes\CoversNothing]
#[Framework\Attributes\CoversNothing()]
final class ConcreteTestCaseWithSuffixTest extends Framework\TestCase
{
public function testFooIsNotBar(): void
Expand Down