Skip to content

Commit

Permalink
Merge pull request #484 from VincentLanglet/patch-1
Browse files Browse the repository at this point in the history
Add psalm.xml to .gitattributes
  • Loading branch information
greg0ire committed Jul 29, 2023
2 parents a77f4cc + ae6170f commit a9ec7af
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
/phpcs.xml.dist export-ignore
/phpstan.neon export-ignore
/phpunit.xml.dist export-ignore
/psalm.xml export-ignore
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,9 @@ class TestImportWithConcreteAnnotation
class DummyClass2
{
/**
* @DummyId @DummyColumn(type="integer") @DummyGeneratedValue
* @DummyId
* @DummyColumn(type="integer")
* @DummyGeneratedValue
* @var int
*/
public $id;
Expand Down
2 changes: 1 addition & 1 deletion tests/Doctrine/Tests/Common/Annotations/DummyClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class DummyClass
public $field1;

/**
* @var mixed;
* @var mixed
* @DummyJoinTable(name="join_table",
* joinColumns={@DummyJoinColumn(name="col1", referencedColumnName="col2")},
* inverseJoinColumns={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
use Doctrine\Common\Annotations\AnnotationReader;
use PHPUnit\Framework\TestCase;
use ReflectionClass;
use SimpleXMLElement;

/**
* @group
Expand Down Expand Up @@ -44,7 +45,7 @@ class DCOM141Annotation
}

/**
* @DCOM141Annotation(\SimpleXMLElement::class)
* @DCOM141Annotation(SimpleXMLElement::class)
*/
class DCOM141ConsumerPrefixed
{
Expand Down

0 comments on commit a9ec7af

Please sign in to comment.