Skip to content

Commit 31ccc2e

Browse files
committed
try to satisfy psalm
1 parent 7371ba5 commit 31ccc2e

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/Configuration/Alert.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
class Alert extends AbstractConfiguration
1212
{
13-
/** @var list<string> The list of each configuration tree key */
13+
/** @var string[] The list of each configuration tree key */
1414
protected $keys = [
1515
'scenario',
1616
'scenario_hash',

src/Configuration/Alert/Decision.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class Decision extends AbstractConfiguration
99
{
10-
/** @var list<string> The list of each configuration tree key */
10+
/** @var string[] The list of each configuration tree key */
1111
protected $keys = [
1212
'origin',
1313
'type',

src/Configuration/Alert/Event.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class Event extends AbstractConfiguration
99
{
10-
/** @var list<string> The list of each configuration tree key */
10+
/** @var string[] The list of each configuration tree key */
1111
protected $keys = [
1212
'meta',
1313
'timestamp',

src/Configuration/Alert/Meta.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class Meta extends AbstractConfiguration
99
{
10-
/** @var list<string> The list of each configuration tree key */
10+
/** @var string[] The list of each configuration tree key */
1111
protected $keys = [
1212
'key',
1313
'value',

src/Configuration/Alert/Source.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class Source extends AbstractConfiguration
99
{
10-
/** @var list<string> The list of each configuration tree key */
10+
/** @var string[] The list of each configuration tree key */
1111
protected $keys = [
1212
'scope',
1313
'value',

src/Configuration/Metrics.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
class Metrics extends AbstractConfiguration
2323
{
24-
/** @var list<string> The list of each configuration tree key */
24+
/** @var string[] The list of each configuration tree key */
2525
protected $keys = [
2626
'name',
2727
'type',

src/Configuration/Metrics/Items.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121
class Items extends AbstractConfiguration
2222
{
23-
/** @var list<string> The list of each configuration tree key */
23+
/** @var string[] The list of each configuration tree key */
2424
protected $keys = [
2525
'name',
2626
'value',

0 commit comments

Comments
 (0)