Skip to content

Commit 47c99cc

Browse files
author
Vasiliev.A
committed
declare strict type for test data fixture
1 parent 3e7814a commit 47c99cc

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

dev/tests/integration/testsuite/Magento/AsynchronousOperations/_files/operation_searchable.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
7+
declare(strict_types=1);
8+
69
use Magento\TestFramework\Helper\Bootstrap;
710
use Magento\Framework\Bulk\OperationInterface;
811

@@ -20,8 +23,8 @@
2023
'user_id' => 1,
2124
'description' => 'Bulk Description',
2225
'operation_count' => 3,
23-
'start_time' => '2009-10-10 00:00:00'
24-
]
26+
'start_time' => '2009-10-10 00:00:00',
27+
],
2528
];
2629
// Only processed operations are saved into database (i.e. operations that are not in 'open' state)
2730
$operations = [

0 commit comments

Comments
 (0)