Skip to content

Commit 898d844

Browse files
Fixing code style
1 parent f0eddbd commit 898d844

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

src/MartinGeorgiev/Doctrine/DBAL/Type.php

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,36 +8,61 @@ final class Type
88
{
99
// Array Types
1010
public const BIGINT_ARRAY = 'bigint[]';
11+
1112
public const BOOL_ARRAY = 'bool[]';
13+
1214
public const CIDR_ARRAY = 'cidr[]';
15+
1316
public const DOUBLE_PRECISION_ARRAY = 'double precision[]';
17+
1418
public const GEOGRAPHY_ARRAY = 'geography[]';
19+
1520
public const GEOMETRY_ARRAY = 'geometry[]';
21+
1622
public const INET_ARRAY = 'inet[]';
23+
1724
public const INTEGER_ARRAY = 'integer[]';
25+
1826
public const JSONB_ARRAY = 'jsonb[]';
27+
1928
public const MACADDR_ARRAY = 'macaddr[]';
29+
2030
public const POINT_ARRAY = 'point[]';
31+
2132
public const REAL_ARRAY = 'real[]';
33+
2234
public const SMALLINT_ARRAY = 'smallint[]';
35+
2336
public const TEXT_ARRAY = 'text[]';
2437

2538
// Scalar Types
2639
public const CIDR = 'cidr';
40+
2741
public const GEOGRAPHY = 'geography';
42+
2843
public const GEOMETRY = 'geometry';
44+
2945
public const INET = 'inet';
46+
3047
public const JSONB = 'jsonb';
48+
3149
public const LTREE = 'ltree';
50+
3251
public const MACADDR = 'macaddr';
52+
3353
public const POINT = 'point';
3454

3555
// Range Types
3656
public const DATERANGE = 'daterange';
57+
3758
public const INT4RANGE = 'int4range';
59+
3860
public const INT8RANGE = 'int8range';
61+
3962
public const NUMRANGE = 'numrange';
63+
4064
public const TSRANGE = 'tsrange';
65+
4166
public const TSTZRANGE = 'tstzrange';
4267

4368
private function __construct()

src/MartinGeorgiev/Doctrine/DBAL/Types/Jsonb.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
namespace MartinGeorgiev\Doctrine\DBAL\Types;
66

7-
use MartinGeorgiev\Doctrine\DBAL\Type;
87
use Doctrine\DBAL\Platforms\AbstractPlatform;
8+
use MartinGeorgiev\Doctrine\DBAL\Type;
99

1010
/**
1111
* Implementation of PostgreSQL JSONB data type.

src/MartinGeorgiev/Doctrine/DBAL/Types/TextArray.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
namespace MartinGeorgiev\Doctrine\DBAL\Types;
66

7-
use MartinGeorgiev\Doctrine\DBAL\Type;
87
use Doctrine\DBAL\Platforms\AbstractPlatform;
8+
use MartinGeorgiev\Doctrine\DBAL\Type;
99
use MartinGeorgiev\Utils\PHPArrayToPostgresValueTransformer;
1010
use MartinGeorgiev\Utils\PostgresArrayToPHPArrayTransformer;
1111

0 commit comments

Comments
 (0)