forked from doctrine/orm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix metadata constructor inference by phpstan
- Loading branch information
1 parent
75b4b88
commit 89673c6
Showing
5 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
tests/Doctrine/StaticAnalysis/Mapping/class-metadata-constructor.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
namespace Doctrine\StaticAnalysis\Mapping; | ||
|
||
use Doctrine\ORM\Mapping\ClassMetadata; | ||
|
||
/** | ||
* @template T of object | ||
*/ | ||
class MetadataGenerator | ||
{ | ||
/** | ||
* @psalm-param class-string<T> $entityName | ||
* | ||
* @psalm-return ClassMetadata<T> | ||
*/ | ||
public function createMetadata(string $entityName): ClassMetadata | ||
{ | ||
return new ClassMetadata($entityName); | ||
} | ||
} |