We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8c2f5d commit 180819aCopy full SHA for 180819a
src/MartinGeorgiev/Doctrine/DBAL/Type.php
@@ -0,0 +1,10 @@
1
+<?php
2
+
3
+declare(strict_types=1);
4
5
+namespace MartinGeorgiev\Doctrine\DBAL;
6
7
+abstract class Type
8
+{
9
+ public const BIGINT_ARRAY = 'bigint[]';
10
+}
src/MartinGeorgiev/Doctrine/DBAL/Types/BigIntArray.php
@@ -4,6 +4,8 @@
namespace MartinGeorgiev\Doctrine\DBAL\Types;
+use MartinGeorgiev\Doctrine\DBAL\Type;
/**
* Implementation of PostgreSQL BIGINT[] data type.
11
*
@@ -17,7 +19,7 @@ class BigIntArray extends BaseIntegerArray
17
19
18
20
* @var string
21
*/
- protected const TYPE_NAME = 'bigint[]';
22
+ protected const TYPE_NAME = Type::BIGINT_ARRAY;
23
24
protected function getMinValue(): int
25
{
0 commit comments