Skip to content

Commit e45bca1

Browse files
committed
Added strict type declaration for new files
1 parent 20e49f7 commit e45bca1

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

app/code/Magento/Customer/Test/Unit/Model/ResourceModel/Group/Grid/CollectionTest.php

Lines changed: 8 additions & 0 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
namespace Magento\Customer\Test\Unit\Model\ResourceModel\Group\Grid;
710

811
use Magento\Customer\Model\ResourceModel\Group\Grid\Collection;
@@ -67,6 +70,11 @@ class CollectionTest extends \PHPUnit\Framework\TestCase
6770
*/
6871
protected $model;
6972

73+
/**
74+
* SetUp method
75+
*
76+
* @return void
77+
*/
7078
protected function setUp()
7179
{
7280
$this->entityFactoryMock = $this->getMockBuilder(EntityFactoryInterface::class)

app/code/Magento/Customer/Test/Unit/Ui/Component/Listing/Column/GroupActionsTest.php

Lines changed: 8 additions & 0 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
namespace Magento\Customer\Test\Unit\Ui\Component\Listing\Column;
710

811
use Magento\Customer\Ui\Component\Listing\Column\GroupActions;
@@ -33,6 +36,11 @@ class GroupActionsTest extends \PHPUnit\Framework\TestCase
3336
*/
3437
protected $urlBuilder;
3538

39+
/**
40+
* SetUp method
41+
*
42+
* @return void
43+
*/
3644
protected function setUp()
3745
{
3846
$objectManager = new ObjectManager($this);

app/code/Magento/Customer/Ui/Component/Listing/Column/GroupActions.php

Lines changed: 3 additions & 0 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
namespace Magento\Customer\Ui\Component\Listing\Column;
710

811
use Magento\Framework\UrlInterface;

0 commit comments

Comments
 (0)