Skip to content

Commit a762c30

Browse files
no message
1 parent 02ceeb0 commit a762c30

File tree

11 files changed

+33
-11
lines changed

11 files changed

+33
-11
lines changed

tests/Integration/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/ArrayCatTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ class ArrayCatTest extends ArrayTestCase
1111
{
1212
protected function getStringFunctions(): array
1313
{
14-
return ['ARRAY_CAT' => ArrayCat::class];
14+
return [
15+
'ARRAY_CAT' => ArrayCat::class,
16+
];
1517
}
1618

1719
#[Test]

tests/Integration/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/ArrayLengthTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ class ArrayLengthTest extends ArrayTestCase
1111
{
1212
protected function getStringFunctions(): array
1313
{
14-
return ['ARRAY_LENGTH' => ArrayLength::class];
14+
return [
15+
'ARRAY_LENGTH' => ArrayLength::class,
16+
];
1517
}
1618

1719
#[Test]

tests/Integration/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/ArrayPositionTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ class ArrayPositionTest extends ArrayTestCase
1111
{
1212
protected function getStringFunctions(): array
1313
{
14-
return ['ARRAY_POSITION' => ArrayPosition::class];
14+
return [
15+
'ARRAY_POSITION' => ArrayPosition::class,
16+
];
1517
}
1618

1719
#[Test]

tests/Integration/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/ArrayRemoveTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ class ArrayRemoveTest extends ArrayTestCase
1111
{
1212
protected function getStringFunctions(): array
1313
{
14-
return ['ARRAY_REMOVE' => ArrayRemove::class];
14+
return [
15+
'ARRAY_REMOVE' => ArrayRemove::class,
16+
];
1517
}
1618

1719
#[Test]

tests/Integration/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/ArrayToJsonTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ class ArrayToJsonTest extends ArrayTestCase
1111
{
1212
protected function getStringFunctions(): array
1313
{
14-
return ['ARRAY_TO_JSON' => ArrayToJson::class];
14+
return [
15+
'ARRAY_TO_JSON' => ArrayToJson::class,
16+
];
1517
}
1618

1719
#[Test]

tests/Integration/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/ContainsTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ class ContainsTest extends ArrayTestCase
1111
{
1212
protected function getStringFunctions(): array
1313
{
14-
return ['CONTAINS' => Contains::class];
14+
return [
15+
'CONTAINS' => Contains::class,
16+
];
1517
}
1618

1719
#[Test]

tests/Integration/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/DateExtractTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ class DateExtractTest extends DateTestCase
1111
{
1212
protected function getStringFunctions(): array
1313
{
14-
return ['DATE_EXTRACT' => DateExtract::class];
14+
return [
15+
'DATE_EXTRACT' => DateExtract::class,
16+
];
1517
}
1618

1719
#[Test]

tests/Integration/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/JsonbAggTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ class JsonbAggTest extends JsonTestCase
1111
{
1212
protected function getStringFunctions(): array
1313
{
14-
return ['JSONB_AGG' => JsonbAgg::class];
14+
return [
15+
'JSONB_AGG' => JsonbAgg::class,
16+
];
1517
}
1618

1719
#[Test]

tests/Integration/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/JsonbExistsTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ class JsonbExistsTest extends JsonTestCase
1111
{
1212
protected function getStringFunctions(): array
1313
{
14-
return ['JSONB_EXISTS' => JsonbExists::class];
14+
return [
15+
'JSONB_EXISTS' => JsonbExists::class,
16+
];
1517
}
1618

1719
#[Test]

tests/Integration/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/JsonbPathExistsTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ class JsonbPathExistsTest extends JsonTestCase
1111
{
1212
protected function getStringFunctions(): array
1313
{
14-
return ['JSONB_PATH_EXISTS' => JsonbPathExists::class];
14+
return [
15+
'JSONB_PATH_EXISTS' => JsonbPathExists::class,
16+
];
1517
}
1618

1719
#[Test]

0 commit comments

Comments
 (0)