Skip to content

Commit

Permalink
Fix: Run 'make coding-standards'
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Oct 10, 2023
1 parent 03db2f3 commit d41f7cc
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
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 d41f7cc

Please sign in to comment.