Skip to content

Commit cff3d15

Browse files
committed
MAGETWO-92279: An incorrect result of declaration:generate:whitelist execution
- remove redundant strict types
1 parent 6565136 commit cff3d15

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dev/tests/setup-integration/testsuite/Magento/Developer/Console/Command/TablesWhitelistGenerateCommandTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class TablesWhitelistGenerateCommandTest extends SetupTestCase
4545
/**
4646
* {@inheritdoc}
4747
*/
48-
public function setUp() : void
48+
public function setUp()
4949
{
5050
$this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
5151
$this->command = $this->objectManager->create(
@@ -66,7 +66,7 @@ public function setUp() : void
6666
* @moduleName Magento_TestSetupDeclarationModule1
6767
* @dataProvider contentsDataProvider
6868
*/
69-
public function testExecute(array $expectedWhitelistContent) : void
69+
public function testExecute(array $expectedWhitelistContent)
7070
{
7171
$moduleName = 'Magento_TestSetupDeclarationModule1';
7272
$this->cliCommand->install([$moduleName]);
@@ -95,7 +95,7 @@ public function testExecute(array $expectedWhitelistContent) : void
9595
* @return array
9696
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
9797
*/
98-
public function contentsDataProvider() : array
98+
public function contentsDataProvider(): array
9999
{
100100
return [
101101
[

0 commit comments

Comments
 (0)