Skip to content

Commit

Permalink
minor #173 fix phpstan phpdoc (Kleinast)
Browse files Browse the repository at this point in the history
This PR was merged into the 1.x branch.

Discussion
----------

fix phpstan phpdoc

Fixes #172

Commits
-------

cfd6c31 fix phpstan phpdoc
  • Loading branch information
ogizanagi committed Jan 19, 2022
2 parents 75f2d02 + cfd6c31 commit 7d08ee2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@

/**
* Base class for string enumerations with an `ENUM(...values)` column definition
*
* @template T of EnumInterface
* @template-extends AbstractEnumType<T>
*/
abstract class AbstractEnumSQLDeclarationType extends AbstractEnumType
{
Expand Down
4 changes: 4 additions & 0 deletions src/Bridge/Doctrine/DBAL/Types/AbstractIntegerEnumType.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@

use Doctrine\DBAL\Platforms\AbstractPlatform;

/**
* @template T of EnumInterface
* @template-extends AbstractEnumType<T>
*/
abstract class AbstractIntegerEnumType extends AbstractEnumType
{
/**
Expand Down

0 comments on commit 7d08ee2

Please sign in to comment.