Skip to content

Commit

Permalink
TE-10081 Fix CS as per generics sniffer rules. (#8857)
Browse files Browse the repository at this point in the history
TE-10081 Fix CS as per generics sniffer rules
  • Loading branch information
dereuromark committed Oct 30, 2021
1 parent 96b1af7 commit 359a2ad
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/Spryker/Yves/Kernel/Widget/AbstractWidget.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ abstract class AbstractWidget implements WidgetInterface
protected const SERVICE_LOCALE = 'locale';

/**
* @var array
* @var array<string, mixed>
*/
protected $parameters = [];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class ClientResolverTest extends Unit
protected $tester;

/**
* @return array<string[]>
* @return array<array<string>>
*/
public function resolverDataProvider(): array
{
Expand All @@ -49,7 +49,7 @@ public function resolverDataProvider(): array
}

/**
* @return array<string[]>
* @return array<array<string>>
*/
public function resolverExceptionDataProvider(): array
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class GlueResolverTest extends Unit
protected $tester;

/**
* @return array<string[]>
* @return array<array<string>>
*/
public function resolverDataProvider(): array
{
Expand All @@ -49,7 +49,7 @@ public function resolverDataProvider(): array
}

/**
* @return array<string[]>
* @return array<array<string>>
*/
public function resolverExceptionDataProvider(): array
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class ServiceResolverTest extends Unit
protected $tester;

/**
* @return array<string[]>
* @return array<array<string>>
*/
public function resolverDataProvider(): array
{
Expand All @@ -49,7 +49,7 @@ public function resolverDataProvider(): array
}

/**
* @return array<string[]>
* @return array<array<string>>
*/
public function resolverExceptionDataProvider(): array
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class SharedResolverTest extends Unit
protected $tester;

/**
* @return array<string[]>
* @return array<array<string>>
*/
public function resolverDataProvider(): array
{
Expand All @@ -43,7 +43,7 @@ public function resolverDataProvider(): array
}

/**
* @return array<string[]>
* @return array<array<string>>
*/
public function resolverExceptionDataProvider(): array
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class YvesResolverTest extends Unit
protected $tester;

/**
* @return array<string[]>
* @return array<array<string>>
*/
public function resolverDataProvider(): array
{
Expand All @@ -46,7 +46,7 @@ public function resolverDataProvider(): array
}

/**
* @return array<string[]>
* @return array<array<string>>
*/
public function resolverExceptionDataProvider(): array
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class ZedResolverTest extends Unit
protected $tester;

/**
* @return array<string[]>
* @return array<array<string>>
*/
public function resolverDataProvider(): array
{
Expand All @@ -64,7 +64,7 @@ public function resolverDataProvider(): array
}

/**
* @return array<string[]>
* @return array<array<string>>
*/
public function resolverExceptionDataProvider(): array
{
Expand Down

0 comments on commit 359a2ad

Please sign in to comment.