Skip to content

Commit

Permalink
Fix static analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
sad-spirit committed Jan 24, 2025
1 parent 790f30c commit 303f421
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,17 @@
use sad_spirit\pg_wrapper\types\{
DateTimeMultiRange,
MultiRange,
NumericMultiRange
NumericMultiRange,
Range
};
use sad_spirit\pg_wrapper\Connection;
use sad_spirit\pg_wrapper\exceptions\TypeConversionException;
use sad_spirit\pg_wrapper\TypeConverter;

/**
* Converter for multirange types of Postgres 14+
*
* @template T of Range
*/
class MultiRangeConverter extends ContainerConverter implements ConnectionAware
{
Expand All @@ -44,7 +47,7 @@ class MultiRangeConverter extends ContainerConverter implements ConnectionAware
* Constructor, sets converter for the base type
*
* @param TypeConverter $subtypeConverter
* @param class-string<MultiRange>|null $resultClass
* @param class-string<MultiRange<T>>|null $resultClass
*/
public function __construct(
/** Converter for the base type of the multirange */
Expand Down

0 comments on commit 303f421

Please sign in to comment.