WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 87cc91c

Browse files
committed
fix: remove inheritdoc detected by phpsniffer
1 parent 9e6dffa commit 87cc91c

File tree

7 files changed

+0
-21
lines changed

7 files changed

+0
-21
lines changed

src/Types/AsciiStringType.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ public function getBindingType(): ParameterType
2222
return ParameterType::ASCII;
2323
}
2424

25-
/**
26-
* {@inheritDoc}
27-
*/
2825
public function convertToPHPValue(mixed $value, AbstractPlatform $platform): mixed
2926
{
3027
return $value;

src/Types/EnumType.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ public function getSQLDeclaration(array $column, AbstractPlatform $platform): st
1616
return $platform->getEnumDeclarationSQL($column);
1717
}
1818

19-
/**
20-
* {@inheritDoc}
21-
*/
2219
public function convertToPHPValue(mixed $value, AbstractPlatform $platform): mixed
2320
{
2421
return $value;

src/Types/GuidType.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ public function getSQLDeclaration(array $column, AbstractPlatform $platform): st
1919
return $platform->getGuidTypeDeclarationSQL($column);
2020
}
2121

22-
/**
23-
* {@inheritDoc}
24-
*/
2522
public function convertToPHPValue(mixed $value, AbstractPlatform $platform): mixed
2623
{
2724
return $value;

src/Types/StringType.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ public function getSQLDeclaration(array $column, AbstractPlatform $platform): st
1919
return $platform->getStringTypeDeclarationSQL($column);
2020
}
2121

22-
/**
23-
* {@inheritDoc}
24-
*/
2522
public function convertToPHPValue(mixed $value, AbstractPlatform $platform): mixed
2623
{
2724
return $value;

tests/Functional/Schema/MySQL/PointType.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ public function getMappedDatabaseTypes(AbstractPlatform $platform): array
2525
return ['point'];
2626
}
2727

28-
/**
29-
* {@inheritDoc}
30-
*/
3128
public function convertToPHPValue(mixed $value, AbstractPlatform $platform): mixed
3229
{
3330
return $value;

tests/Functional/Schema/PostgreSQLSchemaManagerTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -795,9 +795,6 @@ public function getSQLDeclaration(array $column, AbstractPlatform $platform): st
795795
return 'MyMoney';
796796
}
797797

798-
/**
799-
* {@inheritDoc}
800-
*/
801798
public function convertToPHPValue(mixed $value, AbstractPlatform $platform): mixed
802799
{
803800
return $value;

tests/Platforms/AbstractPlatformTestCase.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,6 @@ public function getSQLDeclaration(array $column, AbstractPlatform $platform): st
120120
return $platform->getDecimalTypeDeclarationSQL($column);
121121
}
122122

123-
/**
124-
* {@inheritDoc}
125-
*/
126123
public function convertToPHPValue(mixed $value, AbstractPlatform $platform): mixed
127124
{
128125
return $value;

0 commit comments

Comments
 (0)