Skip to content

Commit

Permalink
Merge pull request #642 from ergebnis/dependabot/composer/ergebnis/ph…
Browse files Browse the repository at this point in the history
…p-cs-fixer-config-6.7.0

composer(deps-dev): Bump ergebnis/php-cs-fixer-config from 6.2.0 to 6.7.0
  • Loading branch information
localheinz authored Oct 10, 2023
2 parents d5d5141 + d41f7cc commit 3eb675a
Show file tree
Hide file tree
Showing 16 changed files with 56 additions and 53 deletions.
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

0 comments on commit 3eb675a

Please sign in to comment.