Skip to content

Commit 6440539

Browse files
committed
MQE-431: Automatically check for copyright at the top of every framework file
- Add copyright to more files that were recently added
1 parent 8ecc179 commit 6440539

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

src/Magento/FunctionalTestingFramework/Config/FileResolver/Root.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<?php
22
/**
3-
* Copyright © 2017 Magento. All rights reserved.
3+
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
67
namespace Magento\FunctionalTestingFramework\Config\FileResolver;
78

89
use Magento\FunctionalTestingFramework\Config\FileResolverInterface;

src/Magento/FunctionalTestingFramework/Suite/etc/sampleSuite.xml

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
/**
4+
* Copyright © Magento, Inc. All rights reserved.
5+
* See COPYING.txt for license details.
6+
*/
7+
-->
8+
29
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="suiteSchema.xsd">
310
<suite name="mySuite">
411
<include>
@@ -13,4 +20,4 @@
1320
<module name="moduleName" file="excludeFile"/>
1421
</exclude>
1522
</suite>
16-
</config>
23+
</config>

src/Magento/FunctionalTestingFramework/Suite/etc/suiteSchema.xsd

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
/**
4+
* Copyright © Magento, Inc. All rights reserved.
5+
* See COPYING.txt for license details.
6+
*/
7+
-->
8+
29
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
310
<xs:element name="config" type="configType"/>
411
<xs:complexType name="groupType">
@@ -53,4 +60,4 @@
5360
<xs:element type="suiteType" name="suite"/>
5461
</xs:choice>
5562
</xs:complexType>
56-
</xs:schema>
63+
</xs:schema>

src/Magento/FunctionalTestingFramework/Util/Filesystem/DirSetupUtil.php

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
<?php
2+
/**
3+
* Copyright © Magento, Inc. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
26

37
namespace Magento\FunctionalTestingFramework\Util\Filesystem;
48

0 commit comments

Comments
 (0)